From b8d4a9b9d0b13c379da5dc470a0f8523f32d2e99 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sun, 23 Oct 2016 16:09:59 +0200 Subject: Removed PUBLIC_API from the C++ exception classes --- src/utilities/clblast_exceptions.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utilities/clblast_exceptions.hpp') 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, StatusCode> { +class BLASError : public ErrorCode, 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 { +class RuntimeErrorCode : public ErrorCode { public: explicit RuntimeErrorCode(StatusCode status, const std::string &subreason = std::string{}); }; -- cgit v1.2.3