Skip to content

Commit 49da48b

Browse files
authored
Merge pull request #2305 from joto/fix-include-guards
Fix include guard names
2 parents bb355b9 + f55a192 commit 49da48b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/expire-config.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
2-
#define OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
1+
#ifndef OSM2PGSQL_EXPIRE_CONFIG_HPP
2+
#define OSM2PGSQL_EXPIRE_CONFIG_HPP
33

44
/**
55
* SPDX-License-Identifier: GPL-2.0-or-later
@@ -45,4 +45,4 @@ struct expire_config_t
4545

4646
}; // struct expire_config_t
4747

48-
#endif // OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
48+
#endif // OSM2PGSQL_EXPIRE_CONFIG_HPP

src/lua-setup.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef OSM2PGSQL_LUA_CONFIG_HPP
2-
#define OSM2PGSQL_LUA_CONFIG_HPP
1+
#ifndef OSM2PGSQL_LUA_SETUP_HPP
2+
#define OSM2PGSQL_LUA_SETUP_HPP
33

44
/**
55
* SPDX-License-Identifier: GPL-2.0-or-later
@@ -17,4 +17,4 @@ struct lua_State;
1717
void setup_lua_environment(lua_State *lua_state, std::string const &filename,
1818
bool append_mode);
1919

20-
#endif // OSM2PGSQL_LUA_CONFIG_HPP
20+
#endif // OSM2PGSQL_LUA_SETUP_HPP

0 commit comments

Comments
 (0)