mirror of https://github.com/KLayout/klayout.git
[consider merging] fixed a linker problem for debug builds
This commit is contained in:
parent
20fd5a54a7
commit
e1b041113a
|
|
@ -25,6 +25,6 @@
|
|||
namespace tl
|
||||
{
|
||||
|
||||
extern const nullopt_t nullopt = nullopt_t ();
|
||||
const nullopt_t nullopt = nullopt_t ();
|
||||
|
||||
} // namespace tl
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue