Prefer std::vector<> over C-style malloc/free**
[ardour.git] / libs / audiographer / audiographer / debuggable.h
index 6fda36c735e7a19416350bc47a977df8fa9eef31..6ca544a87e46d888ae314df8df848a9479fca703 100644 (file)
@@ -24,7 +24,7 @@ enum LIBAUDIOGRAPHER_API DebugLevel
 };
 
 /** Class that allows optimizing out debugging code 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
   * debugging statemets like this:
   * \code
   * if (debug_level (SomeDebugLevel) && other_optional_conditionals) {
@@ -38,7 +38,7 @@ enum LIBAUDIOGRAPHER_API DebugLevel
   * logical and (short-circuiting).
   */
 template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
-class LIBAUDIOGRAPHER_API Debuggable
+class /*LIBAUDIOGRAPHER_API*/ Debuggable
 {
   protected:
        Debuggable(std::ostream & debug_stream = std::cerr)