mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-13 02:01:08 +00:00
Add some needed ToStr implementations
This commit is contained in:
@@ -1884,6 +1884,12 @@ string ToStrHelper<false, uint32_t>::Get(const uint32_t &el)
|
||||
return tostrBuf;
|
||||
}
|
||||
|
||||
template<>
|
||||
string ToStrHelper<false, long>::Get(const long &el)
|
||||
{
|
||||
return ToStr::Get((uint64_t)el);
|
||||
}
|
||||
|
||||
template<>
|
||||
string ToStrHelper<false, char>::Get(const char &el)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user