소스 검색

Moved nullopt monostate out of optional

master
Ludovic 'Archivist' Lagouardette 3 년 전
부모
커밋
6713b56da6
2개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. +7
    -0
      include/gp/functional/monostates.hpp
  2. +1
    -3
      include/gp/functional/optional.hpp

+ 7
- 0
include/gp/functional/monostates.hpp 파일 보기

@ -0,0 +1,7 @@
#pragma once
namespace gp{
struct nullopt_t final{};
constexpr nullopt_t nullopt;
}

+ 1
- 3
include/gp/functional/optional.hpp 파일 보기

@ -3,6 +3,7 @@
#include "gp_config.hpp"
#include "gp/functional/bind_front.hpp"
#include "gp/functional/monostates.hpp"
#include "gp/algorithms/move.hpp"
#include "gp/exception.hpp"
@ -10,9 +11,6 @@
#include <new>
namespace gp{
struct nullopt_t final{};
constexpr nullopt_t nullopt;
template<typename T>
class optional final{

불러오는 중...
취소
저장