mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
Fix one test in gcc
This commit is contained in:
parent
5eaab18b4f
commit
a383191789
@ -25,6 +25,8 @@ using namespace triqs::arrays;
|
|||||||
struct S {
|
struct S {
|
||||||
double x = 0, y = 0;
|
double x = 0, y = 0;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
S() = default;
|
||||||
|
S(double x, double y, int k):x(x),y(y),i(k) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::ostream &operator<<(std::ostream &out, S const &s) { return out << "(" << s.x << " " << s.y << " " << s.i << ")"; }
|
std::ostream &operator<<(std::ostream &out, S const &s) { return out << "(" << s.x << " " << s.y << " " << s.i << ")"; }
|
||||||
|
Loading…
Reference in New Issue
Block a user