mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-20 06:51:33 +02:00
Update to v106r52 release.
byuu says: I stand corrected, I managed to create and even larger diff than ever. This one weighs in at 309KiB `>__>` I'll have to create a changelog later, I'm too tired right now to go through all of that.
This commit is contained in:
@@ -220,18 +220,18 @@ template<> struct stringify<const string&> {
|
||||
const string& _text;
|
||||
};
|
||||
|
||||
template<> struct stringify<string_view> {
|
||||
stringify(const string_view& source) : _view(source) {}
|
||||
template<> struct stringify<view<string>> {
|
||||
stringify(const view<string>& source) : _view(source) {}
|
||||
auto data() const -> const char* { return _view.data(); }
|
||||
auto size() const -> uint { return _view.size(); }
|
||||
const string_view& _view;
|
||||
const view<string>& _view;
|
||||
};
|
||||
|
||||
template<> struct stringify<const string_view&> {
|
||||
stringify(const string_view& source) : _view(source) {}
|
||||
template<> struct stringify<const view<string>&> {
|
||||
stringify(const view<string>& source) : _view(source) {}
|
||||
auto data() const -> const char* { return _view.data(); }
|
||||
auto size() const -> uint { return _view.size(); }
|
||||
const string_view& _view;
|
||||
const view<string>& _view;
|
||||
};
|
||||
|
||||
//pointers
|
||||
|
Reference in New Issue
Block a user