mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-22 02:12:45 +01:00
9 lines
221 B
C++
9 lines
221 B
C++
#define BOOST_TEST_MODULE openrw
|
|
#include <boost/test/unit_test.hpp>
|
|
#include "test_Globals.hpp"
|
|
|
|
std::ostream& operator<<(std::ostream& stream, const glm::vec3& v) {
|
|
stream << glm::to_string(v);
|
|
return stream;
|
|
}
|