mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-12 00:59:23 +00:00
24 lines
420 B
C++
24 lines
420 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include <nonstd/optional.hpp>
|
|
|
|
namespace onnxruntime {
|
|
|
|
using nonstd::optional;
|
|
|
|
#ifndef ORT_NO_EXCEPTIONS
|
|
using nonstd::bad_optional_access;
|
|
#endif
|
|
|
|
using nonstd::nullopt;
|
|
using nonstd::nullopt_t;
|
|
|
|
using nonstd::in_place;
|
|
using nonstd::in_place_t;
|
|
|
|
using nonstd::make_optional;
|
|
|
|
} // namespace onnxruntime
|