Skip to content

Instantly share code, notes, and snippets.

@srz-zumix
Created December 14, 2021 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srz-zumix/40f1ffc30ce06ac2905506fc1a9e337d to your computer and use it in GitHub Desktop.
Save srz-zumix/40f1ffc30ce06ac2905506fc1a9e337d to your computer and use it in GitHub Desktop.
system header warning
// not system include
// gcc: https://wandbox.org/permlink/MLrLASaM5o5A3UWm
// clang: https://wandbox.org/permlink/x6TT2NFROSmyLhV4
// system include
// gcc: https://wandbox.org/permlink/XVHXnWIMyOfDMjl3
// clang: https://wandbox.org/permlink/strTYwduT4ZLH5NK
// This file is a "Hello, world!" in C++ language by GCC for wandbox.
#include <iostream>
#include <cstdlib>
#include "test.h"
//#include <test.h>
int main()
{
std::cout << "Hello, Wandbox!" << f() << std::endl;
}
// GCC reference:
// https://gcc.gnu.org/
// C++ language references:
// https://cppreference.com/
// https://isocpp.org/
// http://www.open-std.org/jtc1/sc22/wg21/
// Boost libraries references:
// https://www.boost.org/doc/
int f() {
return 1, 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment