We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79794aa commit 06edde2Copy full SHA for 06edde2
sgr.hpp
@@ -7,8 +7,8 @@
7
* ----------------------------------------------------------------------------
8
*/
9
10
-#ifndef _SGR_HPP_
11
-#define _SGR_HPP_
+#ifndef SGR_HPP_INCLUDED
+#define SGR_HPP_INCLUDED
12
13
#if defined(_WIN32) || defined(_WIN64)
14
/* Windows is *NOT* supported, but sgr will compile fine. All the sgr
@@ -315,7 +315,7 @@ namespace priv
315
{
316
int row, col;
317
318
- gotoxy(int r, int c) : row(r), col(c) {};
+ gotoxy(int r, int c) : row(r), col(c) {}
319
};
320
}
321
@@ -477,5 +477,5 @@ struct palette {
477
478
479
480
-#endif /* _SGR_HPP_ */
+#endif /* SGR_HPP_INCLUDED */
481
0 commit comments