blob: 642302898f9b91b76088baa2d7adaa8f8567e4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the BastionOS freestanding C++ standard library.
//
//===----------------------------------------------------------------------===//
#ifndef _LIBBASTION_OPTIONAL
#define _LIBBASTION_OPTIONAL
#include <__config>
#include <__optional/optional.h>
#endif // _LIBBASTION_OPTIONAL
|