https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85557
--- Comment #4 from Evgeniy Shcherbina ---
Jonathan, yes it *should* be called as foo(1, 2) but the result is as if it is
called as foo(1, 1).
--- Comment #5 from Evgeniy Shcherbina ---
Jonathan, yes it *should* be called as foo(1, 2) but the r
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85557
--- Comment #4 from Evgeniy Shcherbina ---
Jonathan, yes it *should* be called as foo(1, 2) but the result is as if it is
called as foo(1, 1).
--- Comment #5 from Evgeniy Shcherbina ---
Jonathan, yes it *should* be called as foo(1, 2) but the r
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85557
--- Comment #2 from Evgeniy Shcherbina ---
There is 2 parameter calculations: "first" and "second", no matter what is
evaluated first or second, the "first" parameter should be initialized with `i
= 1`, and "second" with `i = 2`. So "first" shoul
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: ixsci at yandex dot ru
Target Milestone: ---
Given the following simple code:
#include
using namespace std;
int foo(int first, int second)
{
return first << second;
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85247
--- Comment #2 from Evgeniy Shcherbina ---
How is that incorrect? It is a pretty valid URI which I can change to this:
"ftp://blahblah.org"; and gcc will tell me that filename is "blahblah.org" which
is obviously wrong. Anyway, I will find where
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: ixsci at yandex dot ru
Target Milestone: ---
Here is a small example which is using a host-like path:
#include
#include
namespace fs = std::filesystem;
int main()
{
std::cout << fs::path("//host
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: ixsci at yandex dot ru
Target Milestone: ---
Given: A class with a virtual function which result should not be discarded and
a pointer to that class.
Expected: Access to such a
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: ixsci at yandex dot ru
Target Milestone: ---
Compiling the following code:
#include
using namespace std;
int main()
{
int i = 0;
cout << i++ <&
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82959
--- Comment #1 from Evgeniy Shcherbina ---
Not that it matters much, but it should be "int i = -1;" in the code to match
my description fully.
erity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: ixsci at yandex dot ru
Target Milestone: ---
Having the following code:
#include
using namespace std;
class Int
{
public:
Int() = default;
Int(in
10 matches
Mail list logo