diff --git a/src/odb/test/cpp/helper/env.cpp b/src/odb/test/cpp/helper/env.cpp index 7c23d97d3d6..e221875e202 100644 --- a/src/odb/test/cpp/helper/env.cpp +++ b/src/odb/test/cpp/helper/env.cpp @@ -34,6 +34,8 @@ #include +namespace odb { + std::string testTmpPath(const std::string& file) { const char* base_dir = std::getenv("BASE_DIR"); @@ -42,3 +44,5 @@ std::string testTmpPath(const std::string& file) } return std::string(base_dir) + file; } + +} // namespace odb diff --git a/src/odb/test/cpp/helper/env.h b/src/odb/test/cpp/helper/env.h index e3c56a38d42..01ae006ec15 100644 --- a/src/odb/test/cpp/helper/env.h +++ b/src/odb/test/cpp/helper/env.h @@ -34,4 +34,6 @@ #pragma once +namespace odb { std::string testTmpPath(const std::string& file); +} // namespace odb