Some AudioGrapher classes need to be exportable now, to support newly introduced...
[ardour.git] / libs / audiographer / audiographer / throwing.h
index ecf7aecd4934f755b67def48c352fdfd8058344a..0d8c2a89fb4740b26672f61c7ccd540cb07b6ac6 100644 (file)
@@ -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<ThrowLevel L = DEFAULT_THROW_LEVEL>
-class /*LIBAUDIOGRAPHER_API*/ Throwing
+class LIBAUDIOGRAPHER_API Throwing
 {
   protected:
        Throwing() {}