Skip to content

Commit 03f50c9

Browse files
committed
Change include guard macro
According to the C++ standard (§2.10.3.1), identifiers beginning with an underscore and followed by a uppercase letter is reserved to the impelemntation for any use. Hence the removal of the underscore in the unclude guard definition.
1 parent c7fed9e commit 03f50c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppSQLite3.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* See LICENSE file for copyright and license info
66
*/
77

8-
#ifndef _CppSQLite3_H_
9-
#define _CppSQLite3_H_
8+
#ifndef CppSQLite3_H
9+
#define CppSQLite3_H
1010

1111
#include <sqlite3.h>
1212
#include <cstdio>

0 commit comments

Comments
 (0)