NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / pbd / pbd / epa.h
index 6d305c5c4cba2b80d87892f6a62496b6d4e00e5b..8727fad08e115931475485fa5c0b65ce4e0031fb 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2010 Paul Davis 
+    Copyright (C) 2010 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -31,17 +31,17 @@ class LIBPBD_API EnvironmentalProtectionAgency {
   public:
         EnvironmentalProtectionAgency (bool arm = true, const std::string& envname = std::string());
         ~EnvironmentalProtectionAgency ();
-        
+
         void arm ();
         void save ();
         void restore () const;
-        
+
         static EnvironmentalProtectionAgency* get_global_epa () { return _global_epa; }
         static void set_global_epa (EnvironmentalProtectionAgency* epa) { _global_epa = epa; }
-        
+
   private:
         void clear () const;
-               
+
         bool _armed;
         std::string _envname;
         std::map<std::string,std::string> e;