NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / audiographer / audiographer / flag_debuggable.h
index 5cb948a3d082c566ad50c648bfde352a8429107c..f5d4fbf6ed5ed6eec222cc736b1af3b9014855ff 100644 (file)
@@ -14,7 +14,7 @@ namespace AudioGrapher
 
 /// A debugging class for nodes that support a certain set of flags.
 template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
-class LIBAUDIOGRAPHER_API FlagDebuggable : public Debuggable<L>
+class /*LIBAUDIOGRAPHER_API*/ FlagDebuggable : public Debuggable<L>
 {
   public:
        typedef FlagField::Flag Flag;
@@ -26,14 +26,14 @@ class LIBAUDIOGRAPHER_API FlagDebuggable : public Debuggable<L>
        {
                flags.set (flag);
        }
-       
+
        /// Prints debug output if \a context contains flags that are not supported by this class
        template<typename SelfType, typename ContextType>
        void check_flags (SelfType & self, ProcessContext<ContextType> context)
        {
                if (!Debuggable<L>::debug_level (DebugFlags)) { return; }
                FlagField unsupported = flags.unsupported_flags_of (context.flags());
-               
+
                for (FlagField::iterator it = unsupported.begin(); it != unsupported.end(); ++it) {
                        Debuggable<L>::debug_stream() << boost::str (boost::format
                                ("%1% does not support flag %2%")