arg_router  1.4.0
C++ command line argument parsing and routing
literals.hpp
1 // Copyright (C) 2022-2023 by Camden Mannett.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
4 
5 #pragma once
6 
8 
9 namespace arg_router::literals
10 {
11 #ifdef AR_ENABLE_CPP20_STRINGS
17 template <utility::detail::compile_time_string_storage S>
18 [[nodiscard]] constexpr utility::str<S> operator""_S() noexcept
19 {
20  return utility::str<S>{};
21 }
22 #endif
23 } // namespace arg_router::literals