summaryrefslogtreecommitdiff
path: root/src/utilities/clblast_exceptions.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-10-23 16:09:59 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-10-23 16:09:59 +0200
commitb8d4a9b9d0b13c379da5dc470a0f8523f32d2e99 (patch)
tree8d8d1c71879afd5c5d16e58a2b43c88dcfce72cb /src/utilities/clblast_exceptions.hpp
parent66f5c9d9b866e80d244be7fac0f613599e7bf546 (diff)
Removed PUBLIC_API from the C++ exception classes
Diffstat (limited to 'src/utilities/clblast_exceptions.hpp')
-rw-r--r--src/utilities/clblast_exceptions.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilities/clblast_exceptions.hpp b/src/utilities/clblast_exceptions.hpp
index 89f5e761..f3c7b9a3 100644
--- a/src/utilities/clblast_exceptions.hpp
+++ b/src/utilities/clblast_exceptions.hpp
@@ -23,14 +23,14 @@ namespace clblast {
// =================================================================================================
// Represents a semantic error in BLAS function arguments
-class PUBLIC_API BLASError : public ErrorCode<Error<std::invalid_argument>, StatusCode> {
+class BLASError : public ErrorCode<Error<std::invalid_argument>, StatusCode> {
public:
explicit BLASError(StatusCode status, const std::string &subreason = std::string{});
};
// =================================================================================================
// Represents a runtime error generated by internal logic
-class PUBLIC_API RuntimeErrorCode : public ErrorCode<RuntimeError, StatusCode> {
+class RuntimeErrorCode : public ErrorCode<RuntimeError, StatusCode> {
public:
explicit RuntimeErrorCode(StatusCode status, const std::string &subreason = std::string{});
};