Remove deprecated class binary and string_view operators. Move string_view into its own files. Update version to 0.2.0.

This commit is contained in:
2022-05-22 15:14:34 -07:00
parent e5cf445f19
commit 3fc89111ea
26 changed files with 448 additions and 945 deletions

View File

@@ -0,0 +1,30 @@
/**
This file is a part of rexy's general purpose library
Copyright (C) 2022 rexy712
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef REXY_COMPAT_20_SOURCE_LOCATION_HPP
#define REXY_COMPAT_20_SOURCE_LOCATION_HPP
#include <source_location>
namespace rexy::compat::cpp20{
using source_location = std::source_location;
}
#endif