Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma GCC optimize("Ofast")
- #pragma GCC target("sse4.1,sse4.2,sse3,sse2,sse,avx,avx2")
- struct Hello {
- double x;
- Hello(double x) : x(x) {}
- };
- int main(int argc, char *argv[]) {
- Hello(1);
- }
Add Comment
Please, Sign In to add comment