Skip to content

Commit 34ceae6

Browse files
committed
test00.cpp
1 parent f95d8ec commit 34ceae6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

common/std.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 by Chrono
22

3-
#ifndef _COMMON_STD_HPP_INCLUDED_
4-
#define _COMMON_STD_HPP_INCLUDED_
3+
#ifndef _COMMON_STD_HPP
4+
#define _COMMON_STD_HPP
55

66
#include <cassert>
77

@@ -16,5 +16,5 @@
1616

1717
//never 'using namespace std;' in c++ header
1818

19-
#endif //_COMMON_STD_HPP_INCLUDED_
19+
#endif //_COMMON_STD_HPP
2020

section0/test00.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// g++ test00.cpp -std=c++14 -o a.out;./a.out
44
// g++ test00.cpp -std=c++14 -I../common -o a.out;./a.out
55

6-
#include <iostream>
6+
//#include <iostream>
77

88
#include "std.hpp"
99

0 commit comments

Comments
 (0)