Skip to content
Snippets Groups Projects
Commit b180ce99 authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

fix for msvc linker, re #13140

parent 257013b6
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ public: ...@@ -44,7 +44,7 @@ public:
bool isValid() const { return m_valid; } bool isValid() const { return m_valid; }
// human readable description of the expected structure of directories // human readable description of the expected structure of directories
std::string description() const { return g_descr; } std::string description() const;
// string that describes the status/error message about this directory // string that describes the status/error message about this directory
std::string status() const; std::string status() const;
......
...@@ -25,6 +25,8 @@ StackOfImagesDirs::StackOfImagesDirs(const std::string &path) ...@@ -25,6 +25,8 @@ StackOfImagesDirs::StackOfImagesDirs(const std::string &path)
findStackDirs(path); findStackDirs(path);
} }
std::string StackOfImagesDirs::description() const { return g_descr; }
std::string StackOfImagesDirs::status() const { std::string StackOfImagesDirs::status() const {
if (m_valid) if (m_valid)
return "Stack of images is correct"; return "Stack of images is correct";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment