OSDN Git Service

deleter.hpp を微修正
authorSubaruG <subaru_g@users.sourceforge.jp>
Thu, 28 Jan 2010 18:29:18 +0000 (03:29 +0900)
committerSubaruG <subaru_g@users.sourceforge.jp>
Thu, 28 Jan 2010 18:29:18 +0000 (03:29 +0900)
gintenlib/deleter.hpp

index 4072ce0..b95522c 100644 (file)
@@ -53,7 +53,7 @@ namespace gintenlib
     typedef void result_type;
     
     template<typename T>
-    result_type operator()( T* ) const throw() {}
+    result_type operator()( T* ) const throw() {}
     
   };  // struct dummy_deleter
   
@@ -61,7 +61,7 @@ namespace gintenlib
   template<typename T>
   struct typed_dummy_deleter : std::unary_function<T*, void>
   {
-    void operator()( T* ) const throw() {}
+    void operator()( T* ) const throw() {}
   
   };  // struct typed_dummy_deleter<T>