File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 77
88namespace adm {
99
10- struct OutOfRangeError : public std ::runtime_error {
10+ struct ADM_EXPORT OutOfRangeError : public std::runtime_error {
1111 explicit OutOfRangeError (const char * msg) : std::runtime_error(msg) {}
1212 explicit OutOfRangeError (const std::string& msg)
1313 : std::runtime_error(msg) {}
1414 };
15- struct InvalidValueError : public std ::runtime_error {
15+ struct ADM_EXPORT InvalidValueError : public std::runtime_error {
1616 explicit InvalidValueError (const char * msg) : std::runtime_error(msg) {}
1717 explicit InvalidValueError (const std::string& msg)
1818 : std::runtime_error(msg) {}
1919 };
20- struct InvalidStringError : public std ::runtime_error {
20+ struct ADM_EXPORT InvalidStringError : public std::runtime_error {
2121 explicit InvalidStringError (const char * msg) : std::runtime_error(msg) {}
2222 explicit InvalidStringError (const std::string& msg)
2323 : std::runtime_error(msg) {}
You can’t perform that action at this time.
0 commit comments