elvout / cs393r

CS 393R Graduate Autonomous Robots, Fall 2021 | Autobots
0 stars 0 forks source link

Starter code header guards #11

Open elvout opened 3 years ago

elvout commented 3 years ago

Category: code style Priority: low

In many header files from the starter code, the header guard (#ifndef ... #define) is placed after the header file's #includes. This shouldn't be a problem as long as all of the included files have header guards, but it goes against the general convention of placing header guards before any other code.