merge branch master into get-any-type

This commit is contained in:
ToruNiina
2019-03-16 15:58:18 +09:00
12 changed files with 24 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_DATETIME #ifndef TOML11_DATETIME_HPP
#define TOML11_DATETIME #define TOML11_DATETIME_HPP
#include <chrono> #include <chrono>
#include <tuple> #include <tuple>
#include <array> #include <array>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_EXCEPTION #ifndef TOML11_EXCEPTION_HPP
#define TOML11_EXCEPTION #define TOML11_EXCEPTION_HPP
#include <stdexcept> #include <stdexcept>
#include <string> #include <string>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_FROM_TOML #ifndef TOML11_FROM_TOML_HPP
#define TOML11_FROM_TOML #define TOML11_FROM_TOML_HPP
#include "get.hpp" #include "get.hpp"
namespace toml namespace toml

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_GET #ifndef TOML11_GET_HPP
#define TOML11_GET #define TOML11_GET_HPP
#include "from.hpp" #include "from.hpp"
#include "result.hpp" #include "result.hpp"
#include "value.hpp" #include "value.hpp"

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_REGION_H #ifndef TOML11_REGION_HPP
#define TOML11_REGION_H #define TOML11_REGION_HPP
#include "exception.hpp" #include "exception.hpp"
#include <memory> #include <memory>
#include <vector> #include <vector>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_RESULT_H #ifndef TOML11_RESULT_HPP
#define TOML11_RESULT_H #define TOML11_RESULT_HPP
#include "traits.hpp" #include "traits.hpp"
#include <type_traits> #include <type_traits>
#include <stdexcept> #include <stdexcept>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_STRING_H #ifndef TOML11_STRING_HPP
#define TOML11_STRING_H #define TOML11_STRING_HPP
#include <string> #include <string>
#include <cstdint> #include <cstdint>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_TO_TOML #ifndef TOML11_TO_TOML_HPP
#define TOML11_TO_TOML #define TOML11_TO_TOML_HPP
#include "value.hpp" #include "value.hpp"
namespace toml namespace toml

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_TRAITS #ifndef TOML11_TRAITS_HPP
#define TOML11_TRAITS #define TOML11_TRAITS_HPP
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <chrono> #include <chrono>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_TYPES_H #ifndef TOML11_TYPES_HPP
#define TOML11_TYPES_H #define TOML11_TYPES_HPP
#include "datetime.hpp" #include "datetime.hpp"
#include "string.hpp" #include "string.hpp"
#include "traits.hpp" #include "traits.hpp"

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_UTILITY #ifndef TOML11_UTILITY_HPP
#define TOML11_UTILITY #define TOML11_UTILITY_HPP
#include "traits.hpp" #include "traits.hpp"
#include <utility> #include <utility>
#include <memory> #include <memory>

View File

@@ -1,7 +1,7 @@
// Copyright Toru Niina 2017. // Copyright Toru Niina 2017.
// Distributed under the MIT License. // Distributed under the MIT License.
#ifndef TOML11_VALUE #ifndef TOML11_VALUE_HPP
#define TOML11_VALUE #define TOML11_VALUE_HPP
#include "traits.hpp" #include "traits.hpp"
#include "into.hpp" #include "into.hpp"
#include "utility.hpp" #include "utility.hpp"