Merge pull request #721 from vampirecat35/master

Update StringBuilder.h
This commit is contained in:
thor2016 2024-03-05 08:36:48 -05:00 committed by GitHub
commit 5eeeb2219f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class StringBuilder
{
public:
// Helper struct. Do not use directly.
template <unsigned Radix, typename T, typename Prefix = nullptr_t>
template <unsigned Radix, typename T, typename Prefix = std::nullptr_t>
struct IntInfo
{
T x;
@ -111,7 +111,7 @@ public:
}
protected:
inline StringBuilder &operator <<(nullptr_t)
inline StringBuilder &operator <<(std::nullptr_t)
{
return *this;
}