mirror of
https://github.com/boostorg/conversion.git
synced 2026-07-23 13:33:47 +00:00
12 lines
338 B
C++
12 lines
338 B
C++
// Copyright (c) 2025-2026 Antony Polukhin
|
|
// Copyright (c) 2025-2026 Fedor Osetrov
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import boost.conversion;
|
|
|
|
long make_me_long(int x) {
|
|
return boost::implicit_cast<long>(x);
|
|
}
|