X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Faudiographer%2Faudiographer%2Fthrowing.h;h=8bd84155605c76d9ebbd11fc7a36347cabe62194;hb=ff2c3dbc81e3648e97cece22f0bcaca4a229f269;hp=e02958a5214632ef0c6b3e8ad12e640c0f54cfe8;hpb=36c233fe6ce570ce85224626ce7aba4a2607537f;p=ardour.git diff --git a/libs/audiographer/audiographer/throwing.h b/libs/audiographer/audiographer/throwing.h index e02958a521..8bd8415560 100644 --- a/libs/audiographer/audiographer/throwing.h +++ b/libs/audiographer/audiographer/throwing.h @@ -16,7 +16,7 @@ namespace AudioGrapher * However, if you want ultra-optimized code and/or don't care about handling * error situations, feel free to use whatever you want. */ -enum LIBAUDIOGRAPHER_API ThrowLevel +enum /*LIBAUDIOGRAPHER_API*/ ThrowLevel { ThrowNone, ///< Not allowed to throw ThrowObject, ///< Object level stuff, ctors, initalizers etc. @@ -26,7 +26,7 @@ enum LIBAUDIOGRAPHER_API ThrowLevel }; /** Class that allows optimizing out error checking during compile time. - * Usage: to take all advantage of this class you should wrap all + * Usage: to take all advantage of this class you should wrap all * throwing statemets like this: * \code * if (throw_level (SomeThrowLevel) && other_optional_conditionals) { @@ -40,7 +40,7 @@ enum LIBAUDIOGRAPHER_API ThrowLevel * logical and (short-circuiting). */ template -class LIBAUDIOGRAPHER_API Throwing +class /*LIBAUDIOGRAPHER_API*/ Throwing { protected: Throwing() {}