init: Fix include header guard

This commit is contained in:
Corentin Le Molgat
2023-12-20 17:31:55 +01:00
parent 234024ab74
commit 15ec692a45
2 changed files with 6 additions and 6 deletions

View File

@@ -11,8 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef OR_TOOLS_OPEN_SOURCE_INIT_INIT_H_
#define OR_TOOLS_OPEN_SOURCE_INIT_INIT_H_
#ifndef OR_TOOLS_INIT_INIT_H_
#define OR_TOOLS_INIT_INIT_H_
#include <cstdint>
#include <string>
@@ -177,4 +177,4 @@ class OrToolsVersion {
} // namespace operations_research
#endif // OR_TOOLS_OPEN_SOURCE_INIT_INIT_H_
#endif // OR_TOOLS_INIT_INIT_H_

View File

@@ -11,8 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef OR_TOOLS_OPEN_SOURCE_INIT_PYTHON_INIT_DOC_H_
#define OR_TOOLS_OPEN_SOURCE_INIT_PYTHON_INIT_DOC_H_
#ifndef OR_TOOLS_INIT_PYTHON_INIT_DOC_H_
#define OR_TOOLS_INIT_PYTHON_INIT_DOC_H_
/*
This file contains docstrings for use in the Python bindings.
@@ -141,4 +141,4 @@ static const char* __doc_operations_research_OrToolsVersion_VersionString =
#pragma GCC diagnostic pop
#endif
#endif // OR_TOOLS_OPEN_SOURCE_INIT_PYTHON_INIT_DOC_H_
#endif // OR_TOOLS_INIT_PYTHON_INIT_DOC_H_