[consider merging] fixed a linker problem for debug builds

This commit is contained in:
Matthias Koefferlein 2024-03-23 19:23:21 +01:00
parent bc3895ac9f
commit 1673c472f2
2 changed files with 2 additions and 2 deletions

View File

@ -25,6 +25,6 @@
namespace tl
{
extern const nullopt_t nullopt = nullopt_t ();
const nullopt_t nullopt = nullopt_t ();
} // namespace tl

View File

@ -34,7 +34,7 @@ namespace tl
struct nullopt_t {};
extern const nullopt_t nullopt;
extern TL_PUBLIC const nullopt_t nullopt;
/**
* @brief Poor man's partial implementation of C++17's std::optional