Skip to content

Commit f55a192

Browse files
committed
Fix include guard names
They were not in line with the file names.
1 parent bb355b9 commit f55a192

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/expire-config.hpp

Lines changed: 3 additions & 3 deletions
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

Lines changed: 3 additions & 3 deletions
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)