no need to dllexport inline class w/o virtuals

This commit is contained in:
Michael Davidsaver
2017-11-06 11:02:08 -06:00
parent 161280220e
commit f91b593aea
2 changed files with 4 additions and 4 deletions

View File

@@ -136,20 +136,20 @@ private:
class epicsShareClass io_exception: public std::runtime_error {
class io_exception: public std::runtime_error {
public:
explicit io_exception(const std::string &s): std::runtime_error(s) {}
};
class epicsShareClass invalid_data_stream_exception: public std::runtime_error {
class invalid_data_stream_exception: public std::runtime_error {
public:
explicit invalid_data_stream_exception(
const std::string &s): std::runtime_error(s) {}
};
class epicsShareClass connection_closed_exception: public std::runtime_error {
class connection_closed_exception: public std::runtime_error {
public:
explicit connection_closed_exception(const std::string &s): std::runtime_error(s) {}
};

View File

@@ -113,7 +113,7 @@ public:
class SecurityPlugin;
class epicsShareClass SecurityException: public std::runtime_error {
class SecurityException: public std::runtime_error {
public:
explicit SecurityException(std::string const & what): std::runtime_error(what) {}
};