Added empty end lines to all workaround files.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@293 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
58eb786d62
commit
607356a844
|
@ -34,4 +34,4 @@ IntegerType lcm( IntegerType a, IntegerType b )
|
|||
|
||||
}}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -90,4 +90,4 @@ typename T::reference deref(auto_any_base const& cur, T&)
|
|||
|
||||
} // end boost
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -43,5 +43,6 @@ namespace boost
|
|||
|
||||
#else
|
||||
# error "format.h was already included"
|
||||
#endif //
|
||||
#endif // !! AI_BOOST_FORMAT_DUMMY_INCLUDED
|
||||
#endif //
|
||||
#endif // !! AI_BOOST_FORMAT_DUMMY_INCLUDED
|
||||
|
||||
|
|
|
@ -23,4 +23,4 @@ namespace boost
|
|||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -27,4 +27,4 @@ namespace boost
|
|||
};
|
||||
};
|
||||
|
||||
#endif // BOOST_UNIFORM_INT_INCLUDED
|
||||
#endif // BOOST_UNIFORM_INT_INCLUDED
|
||||
|
|
|
@ -28,4 +28,4 @@ private:
|
|||
};
|
||||
} // end namespace boost
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -14,7 +14,7 @@ class scoped_array
|
|||
{
|
||||
public:
|
||||
|
||||
// provide a default construtctor
|
||||
// provide a default construtctor
|
||||
scoped_array()
|
||||
: ptr(0)
|
||||
{
|
||||
|
@ -25,25 +25,25 @@ public:
|
|||
: ptr(_ptr)
|
||||
{
|
||||
}
|
||||
|
||||
// automatic destruction of the wrapped object at the
|
||||
|
||||
// automatic destruction of the wrapped object at the
|
||||
// end of our lifetime
|
||||
~scoped_array()
|
||||
{
|
||||
delete[] ptr;
|
||||
}
|
||||
|
||||
|
||||
inline T* get()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
||||
inline operator T*()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
||||
inline T* operator-> ()
|
||||
|
||||
inline T* operator-> ()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
@ -63,15 +63,15 @@ public:
|
|||
{
|
||||
std::swap(ptr, b.ptr);
|
||||
}
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
// encapsulated object pointer
|
||||
T* ptr;
|
||||
|
||||
};
|
||||
|
||||
template<class T>
|
||||
template<class T>
|
||||
inline void swap(scoped_array<T> & a, scoped_array<T> & b)
|
||||
{
|
||||
a.swap(b);
|
||||
|
@ -82,4 +82,5 @@ inline void swap(scoped_array<T> & a, scoped_array<T> & b)
|
|||
#else
|
||||
# error "scoped_array.h was already included"
|
||||
#endif
|
||||
#endif // __AI_BOOST_SCOPED_ARRAY_INCLUDED
|
||||
#endif // __AI_BOOST_SCOPED_ARRAY_INCLUDED
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ class scoped_ptr
|
|||
{
|
||||
public:
|
||||
|
||||
// provide a default construtctor
|
||||
// provide a default construtctor
|
||||
scoped_ptr()
|
||||
: ptr(0)
|
||||
{
|
||||
|
@ -25,25 +25,25 @@ public:
|
|||
: ptr(_ptr)
|
||||
{
|
||||
}
|
||||
|
||||
// automatic destruction of the wrapped object at the
|
||||
|
||||
// automatic destruction of the wrapped object at the
|
||||
// end of our lifetime
|
||||
~scoped_ptr()
|
||||
{
|
||||
delete ptr;
|
||||
}
|
||||
|
||||
|
||||
inline T* get()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
||||
inline operator T*()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
||||
inline T* operator-> ()
|
||||
|
||||
inline T* operator-> ()
|
||||
{
|
||||
return ptr;
|
||||
}
|
||||
|
@ -58,15 +58,15 @@ public:
|
|||
{
|
||||
std::swap(ptr, b.ptr);
|
||||
}
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
// encapsulated object pointer
|
||||
T* ptr;
|
||||
|
||||
};
|
||||
|
||||
template<class T>
|
||||
template<class T>
|
||||
inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b)
|
||||
{
|
||||
a.swap(b);
|
||||
|
@ -77,4 +77,5 @@ inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b)
|
|||
#else
|
||||
# error "scoped_ptr.h was already included"
|
||||
#endif
|
||||
#endif // __AI_BOOST_SCOPED_PTR_INCLUDED
|
||||
#endif // __AI_BOOST_SCOPED_PTR_INCLUDED
|
||||
|
||||
|
|
|
@ -277,4 +277,4 @@ namespace boost {
|
|||
}
|
||||
};
|
||||
|
||||
#endif // !! BOOST_TUPLE_INCLUDED
|
||||
#endif // !! BOOST_TUPLE_INCLUDED
|
||||
|
|
Loading…
Reference in New Issue