Some AudioGrapher classes need to be exportable now, to support newly introduced...
[ardour.git] / libs / audiographer / audiographer / throwing.h
index e02958a5214632ef0c6b3e8ad12e640c0f54cfe8..0d8c2a89fb4740b26672f61c7ccd540cb07b6ac6 100644 (file)
@@ -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) {