Переглянути джерело

Added empty end lines to all workaround files.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@293 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
aramis_acg 16 роки тому
батько
коміт
607356a844

+ 1 - 1
include/BoostWorkaround/boost/common_factor_rt.hpp

@@ -34,4 +34,4 @@ IntegerType  lcm( IntegerType a, IntegerType b )
 
 
 }}
 }}
 
 
-#endif
+#endif

+ 1 - 1
include/BoostWorkaround/boost/foreach.hpp

@@ -90,4 +90,4 @@ typename T::reference deref(auto_any_base const& cur, T&)
 
 
 } // end boost
 } // end boost
 
 
-#endif 
+#endif

+ 3 - 2
include/BoostWorkaround/boost/format.hpp

@@ -43,5 +43,6 @@ namespace boost
 
 
 #else
 #else
 #	error "format.h was already included"
 #	error "format.h was already included"
-#endif // 
-#endif // !! AI_BOOST_FORMAT_DUMMY_INCLUDED
+#endif //
+#endif // !! AI_BOOST_FORMAT_DUMMY_INCLUDED
+

+ 1 - 1
include/BoostWorkaround/boost/random/mersenne_twister.hpp

@@ -23,4 +23,4 @@ namespace boost
 	};
 	};
 };
 };
 
 
-#endif
+#endif

+ 1 - 1
include/BoostWorkaround/boost/random/uniform_int.hpp

@@ -27,4 +27,4 @@ namespace boost
 	};
 	};
 };
 };
 
 
-#endif // BOOST_UNIFORM_INT_INCLUDED
+#endif // BOOST_UNIFORM_INT_INCLUDED

+ 1 - 1
include/BoostWorkaround/boost/random/variate_generator.hpp

@@ -28,4 +28,4 @@ private:
 };
 };
 } // end namespace boost
 } // end namespace boost
 
 
-#endif
+#endif

+ 12 - 11
include/BoostWorkaround/boost/scoped_array.hpp

@@ -14,7 +14,7 @@ class scoped_array
 {
 {
 public:
 public:
 
 
-	// provide a default construtctor 
+	// provide a default construtctor
 	scoped_array()
 	scoped_array()
 		: ptr(0)
 		: ptr(0)
 	{
 	{
@@ -25,25 +25,25 @@ public:
 		: ptr(_ptr)
 		: ptr(_ptr)
 	{
 	{
 	}
 	}
-	
-	// automatic destruction of the wrapped object at the 
+
+	// automatic destruction of the wrapped object at the
 	// end of our lifetime
 	// end of our lifetime
 	~scoped_array()
 	~scoped_array()
 	{
 	{
 		delete[] ptr;
 		delete[] ptr;
 	}
 	}
-	
+
 	inline T* get()
 	inline T* get()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
-	
+
 	inline operator T*()
 	inline operator T*()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
-	
-	inline T* operator-> () 
+
+	inline T* operator-> ()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
@@ -63,15 +63,15 @@ public:
 	{
 	{
 		std::swap(ptr, b.ptr);
 		std::swap(ptr, b.ptr);
 	}
 	}
-	
+
 private:
 private:
-	
+
 	// encapsulated object pointer
 	// encapsulated object pointer
 	T* ptr;
 	T* ptr;
 
 
 };
 };
 
 
-template<class T> 
+template<class T>
 inline void swap(scoped_array<T> & a, scoped_array<T> & b)
 inline void swap(scoped_array<T> & a, scoped_array<T> & b)
 {
 {
 	a.swap(b);
 	a.swap(b);
@@ -82,4 +82,5 @@ inline void swap(scoped_array<T> & a, scoped_array<T> & b)
 #else
 #else
 #	error "scoped_array.h was already included"
 #	error "scoped_array.h was already included"
 #endif
 #endif
-#endif // __AI_BOOST_SCOPED_ARRAY_INCLUDED
+#endif // __AI_BOOST_SCOPED_ARRAY_INCLUDED
+

+ 12 - 11
include/BoostWorkaround/boost/scoped_ptr.hpp

@@ -14,7 +14,7 @@ class scoped_ptr
 {
 {
 public:
 public:
 
 
-	// provide a default construtctor 
+	// provide a default construtctor
 	scoped_ptr()
 	scoped_ptr()
 		: ptr(0)
 		: ptr(0)
 	{
 	{
@@ -25,25 +25,25 @@ public:
 		: ptr(_ptr)
 		: ptr(_ptr)
 	{
 	{
 	}
 	}
-	
-	// automatic destruction of the wrapped object at the 
+
+	// automatic destruction of the wrapped object at the
 	// end of our lifetime
 	// end of our lifetime
 	~scoped_ptr()
 	~scoped_ptr()
 	{
 	{
 		delete ptr;
 		delete ptr;
 	}
 	}
-	
+
 	inline T* get()
 	inline T* get()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
-	
+
 	inline operator T*()
 	inline operator T*()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
-	
-	inline T* operator-> () 
+
+	inline T* operator-> ()
 	{
 	{
 		return ptr;
 		return ptr;
 	}
 	}
@@ -58,15 +58,15 @@ public:
 	{
 	{
 		std::swap(ptr, b.ptr);
 		std::swap(ptr, b.ptr);
 	}
 	}
-	
+
 private:
 private:
-	
+
 	// encapsulated object pointer
 	// encapsulated object pointer
 	T* ptr;
 	T* ptr;
 
 
 };
 };
 
 
-template<class T> 
+template<class T>
 inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b)
 inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b)
 {
 {
 	a.swap(b);
 	a.swap(b);
@@ -77,4 +77,5 @@ inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b)
 #else
 #else
 #	error "scoped_ptr.h was already included"
 #	error "scoped_ptr.h was already included"
 #endif
 #endif
-#endif // __AI_BOOST_SCOPED_PTR_INCLUDED
+#endif // __AI_BOOST_SCOPED_PTR_INCLUDED
+

+ 1 - 1
include/BoostWorkaround/boost/tuple/tuple.hpp

@@ -277,4 +277,4 @@ namespace boost	{
 	}
 	}
 };
 };
 
 
-#endif // !! BOOST_TUPLE_INCLUDED
+#endif // !! BOOST_TUPLE_INCLUDED