source: src/include/optional @ cad8c88

Last change on this file since cad8c88 was 5f225f5, checked in by Andrew Beach <ajbeach@…>, 8 weeks ago

Perhaps only src/Makefile.am needed to change, but I did a text search to try and be absolutely sure I got everything.

  • Property mode set to 100644
File size: 700 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// optional --
8//
9// Author           : Michael L. Brooks
10// Created On       : Mon Jun 17 10:05:00 2019
11// Last Modified By : Michael L. Brooks
12// Last Modified On : Mon Jun 17 10:05:00 2019
13// Update Count     : 1
14//
15
16#pragma once
17// Pragmas for header cleanup tool
18// IWYU pragma: private, include <optional>
19
20#if __cplusplus < 201703L
21#include_next <experimental/optional>
22namespace std {
23        using std::experimental::optional;
24        using std::experimental::nullopt;
25}
26#else
27#include_next <optional>
28#endif
Note: See TracBrowser for help on using the repository browser.