forked from melonDS-emu/melonDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update toml11. fixes bug with FPS settings corrupting config file
- Loading branch information
Showing
83 changed files
with
16,956 additions
and
10,432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@PACKAGE_INIT@ | ||
include("@PACKAGE_toml11_install_cmake_dir@/toml11Targets.cmake") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,62 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2017 Toru Niina | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
#ifndef TOML11_TOML_HPP | ||
#define TOML11_TOML_HPP | ||
|
||
#ifndef TOML_FOR_MODERN_CPP | ||
#define TOML_FOR_MODERN_CPP | ||
// The MIT License (MIT) | ||
// | ||
// Copyright (c) 2017-now Toru Niina | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
#define TOML11_VERSION_MAJOR 3 | ||
#define TOML11_VERSION_MINOR 7 | ||
#define TOML11_VERSION_PATCH 1 | ||
// IWYU pragma: begin_exports | ||
#include "toml11/color.hpp" | ||
#include "toml11/comments.hpp" | ||
#include "toml11/compat.hpp" | ||
#include "toml11/context.hpp" | ||
#include "toml11/conversion.hpp" | ||
#include "toml11/datetime.hpp" | ||
#include "toml11/error_info.hpp" | ||
#include "toml11/exception.hpp" | ||
#include "toml11/find.hpp" | ||
#include "toml11/format.hpp" | ||
#include "toml11/from.hpp" | ||
#include "toml11/get.hpp" | ||
#include "toml11/into.hpp" | ||
#include "toml11/literal.hpp" | ||
#include "toml11/location.hpp" | ||
#include "toml11/ordered_map.hpp" | ||
#include "toml11/parser.hpp" | ||
#include "toml11/region.hpp" | ||
#include "toml11/result.hpp" | ||
#include "toml11/scanner.hpp" | ||
#include "toml11/serializer.hpp" | ||
#include "toml11/skip.hpp" | ||
#include "toml11/source_location.hpp" | ||
#include "toml11/spec.hpp" | ||
#include "toml11/storage.hpp" | ||
#include "toml11/syntax.hpp" | ||
#include "toml11/traits.hpp" | ||
#include "toml11/types.hpp" | ||
#include "toml11/utility.hpp" | ||
#include "toml11/value.hpp" | ||
#include "toml11/value_t.hpp" | ||
#include "toml11/version.hpp" | ||
#include "toml11/visit.hpp" | ||
// IWYU pragma: end_exports | ||
|
||
#include "toml/parser.hpp" | ||
#include "toml/literal.hpp" | ||
#include "toml/serializer.hpp" | ||
#include "toml/get.hpp" | ||
#include "toml/macros.hpp" | ||
|
||
#endif// TOML_FOR_MODERN_CPP | ||
#endif// TOML11_TOML_HPP |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.