[Base] Drop inline on string_util/vec128 implementations for now because clang is whining.

This commit is contained in:
gibbed
2019-08-04 11:50:55 -05:00
parent 7d6d732999
commit 306f358c07
4 changed files with 37 additions and 32 deletions

View File

@@ -16,7 +16,7 @@
namespace xe {
inline std::string to_string(const vec128_t& value) {
std::string to_string(const vec128_t& value) {
char buffer[128];
std::snprintf(buffer, sizeof(buffer), "(%g, %g, %g, %g)", value.x, value.y,
value.z, value.w);