Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing...
[ardour.git] / libs / ardour / ardour / uri_map.h
index 78e53932712e8dc26887d650639ae926ede19983..c62ec6bfc4d48535d2e382efd6f993a88bcfed22 100644 (file)
@@ -26,7 +26,7 @@
 #include <boost/utility.hpp>
 #include <slv2/slv2.h>
 #include "lv2ext/lv2_uri_map.h"
-       
+
 namespace ARDOUR {
 
 
@@ -35,7 +35,7 @@ namespace ARDOUR {
 class URIMap : public boost::noncopyable {
 public:
        URIMap();
-       
+
        LV2_Feature* feature() { return &uri_map_feature; }
 
        uint32_t uri_to_id(const char* map,
@@ -43,11 +43,11 @@ public:
 
 private:
        typedef std::map<std::string, uint32_t> Map;
-       
+
        static uint32_t uri_map_uri_to_id(LV2_URI_Map_Callback_Data callback_data,
                                          const char*               map,
                                          const char*               uri);
-       
+
        LV2_Feature         uri_map_feature;
        LV2_URI_Map_Feature uri_map_feature_data;
        Map                 uri_map;