Skip to content

Commit 06edde2

Browse files
committed
Renamed include guards and removed a stray semicolon.
1 parent 79794aa commit 06edde2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sgr.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* ----------------------------------------------------------------------------
88
*/
99

10-
#ifndef _SGR_HPP_
11-
#define _SGR_HPP_
10+
#ifndef SGR_HPP_INCLUDED
11+
#define SGR_HPP_INCLUDED
1212

1313
#if defined(_WIN32) || defined(_WIN64)
1414
/* Windows is *NOT* supported, but sgr will compile fine. All the sgr
@@ -315,7 +315,7 @@ namespace priv
315315
{
316316
int row, col;
317317

318-
gotoxy(int r, int c) : row(r), col(c) {};
318+
gotoxy(int r, int c) : row(r), col(c) {}
319319
};
320320
}
321321

@@ -477,5 +477,5 @@ struct palette {
477477

478478
}
479479

480-
#endif /* _SGR_HPP_ */
480+
#endif /* SGR_HPP_INCLUDED */
481481

0 commit comments

Comments
 (0)