[ox] Get building with devkitARM again

This commit is contained in:
2019-03-18 00:19:04 -05:00
parent 22da505869
commit b33cd06031
6 changed files with 18 additions and 11 deletions

View File

@@ -8,8 +8,10 @@
namespace ox::buildinfo {
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-const-variable"
#endif
#if defined(OX_USE_STDLIB)
const bool UseStdLib = true;
@@ -37,6 +39,8 @@ const bool BigEndian = false;
const bool LittleEndian = true;
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
}

View File

@@ -174,7 +174,7 @@ const T &Vector<T>::back() const noexcept {
template<typename T>
std::size_t Vector<T>::size() const noexcept {
return m_size;
};
}
template<typename T>
void Vector<T>::resize(std::size_t size) noexcept {