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
|
} // end boost
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -43,5 +43,6 @@ namespace boost
|
||||||
|
|
||||||
#else
|
#else
|
||||||
# error "format.h was already included"
|
# error "format.h was already included"
|
||||||
#endif //
|
#endif //
|
||||||
#endif // !! AI_BOOST_FORMAT_DUMMY_INCLUDED
|
#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
|
} // end namespace boost
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -277,4 +277,4 @@ namespace boost {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // !! BOOST_TUPLE_INCLUDED
|
#endif // !! BOOST_TUPLE_INCLUDED
|
||||||
|
|
Loading…
Reference in New Issue