8000 Fix issue #15: rename the #include guards · rmpowell77/docopt.cpp@a6d4652 · GitHub
[go: up one dir, main page]

Skip to content

Commit a6d4652

Browse files
committed
Fix issue docopt#15: rename the #include guards
1 parent 9de81eb commit a6d4652

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docopt.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Copyright (c) 2013 Jared Grubb. All rights reserved.
77
//
88

9-
#ifndef __docopt__docopt__
10-
#define __docopt__docopt__
9+
#ifndef docopt__docopt_h_
10+
#define docopt__docopt_h_
1111

1212
#include "docopt_value.h"
1313

@@ -62,4 +62,4 @@ namespace docopt {
6262
bool options_first = false) noexcept;
6363
}
6464

65-
#endif /* defined(__docopt__docopt__) */
65+
#endif /* defined(docopt__docopt_h_) */

docopt_value.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Copyright (c) 2013 Jared Grubb. All rights reserved.
77
//
88

9-
#ifndef __docopt__value__
10-
#define __docopt__value__
9+
#ifndef docopt__value_h_
10+
#define docopt__value_h_
1111

1212
#include <string>
1313
#include <vector>
@@ -307,4 +307,4 @@ namespace docopt {
307307
}
308308
}
309309

310-
#endif /* defined(__docopt__value__) */
310+
#endif /* defined(docopt__value_h_) */

0 commit comments

Comments
 (0)
0