Skip to content

Commit

Permalink
Fix endif and bump version (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dillonb authored Mar 4, 2023
1 parent daa960c commit b874838
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROJECT(
cflags
LANGUAGES C CXX
DESCRIPTION "Command line flag parsing library in C/C++"
VERSION 3.0.1
VERSION 3.0.2
)

###
Expand Down
6 changes: 3 additions & 3 deletions include/cflags.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// cflags version 3.0.1
// cflags version 3.0.2
//
// MIT License
//
Expand Down Expand Up @@ -34,7 +34,7 @@

#ifdef __cplusplus
extern "C" {
#endif __cplusplus
#endif // __cplusplus

#define CFLAGS_ERROR_OOM "cflags: out of memory"

Expand Down Expand Up @@ -500,6 +500,6 @@ static void cflags_print_usage(cflags_t * flags, const char * usage, const char

#ifdef __cplusplus
} // extern "C"
#endif __cplusplus
#endif // __cplusplus

#endif // CFLAGS_H
2 changes: 1 addition & 1 deletion include/cflags.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// cflags version 3.0.1
// cflags version 3.0.2
//
// MIT License
//
Expand Down

0 comments on commit b874838

Please sign in to comment.