mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 05:17:58 -05:00
Fixed type conversion ambiguity
This commit is contained in:
@ -117,7 +117,7 @@ std::string StringFromFormat(const char* format, ...) {
|
||||
}
|
||||
|
||||
// For Debugging. Read out an u8 array.
|
||||
std::string ArrayToString(const u8* data, u32 size, int line_len, bool spaces) {
|
||||
std::string ArrayToString(const u8* data, size_t size, int line_len, bool spaces) {
|
||||
std::ostringstream oss;
|
||||
oss << std::setfill('0') << std::hex;
|
||||
|
||||
|
@ -33,7 +33,7 @@ inline void CharArrayFromFormat(char (&out)[Count], const char* format, ...) {
|
||||
}
|
||||
|
||||
// Good
|
||||
std::string ArrayToString(const u8* data, u32 size, int line_len = 20, bool spaces = true);
|
||||
std::string ArrayToString(const u8* data, size_t size, int line_len = 20, bool spaces = true);
|
||||
|
||||
std::string StripSpaces(const std::string& s);
|
||||
std::string StripQuotes(const std::string& s);
|
||||
|
@ -104,8 +104,7 @@ public:
|
||||
}
|
||||
template <typename V>
|
||||
void operator*=(const V& f) {
|
||||
x *= f;
|
||||
y *= f;
|
||||
*this = *this * f;
|
||||
}
|
||||
template <typename V>
|
||||
Vec2<decltype(T{} / V{})> operator/(const V& f) const {
|
||||
@ -262,9 +261,7 @@ public:
|
||||
}
|
||||
template <typename V>
|
||||
void operator*=(const V& f) {
|
||||
x *= f;
|
||||
y *= f;
|
||||
z *= f;
|
||||
*this = *this * f;
|
||||
}
|
||||
template <typename V>
|
||||
Vec3<decltype(T{} / V{})> operator/(const V& f) const {
|
||||
@ -478,10 +475,7 @@ public:
|
||||
}
|
||||
template <typename V>
|
||||
void operator*=(const V& f) {
|
||||
x *= f;
|
||||
y *= f;
|
||||
z *= f;
|
||||
w *= f;
|
||||
*this = *this * f;
|
||||
}
|
||||
template <typename V>
|
||||
Vec4<decltype(T{} / V{})> operator/(const V& f) const {
|
||||
|
Reference in New Issue
Block a user