mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-19 04:12:09 +00:00
Use nullptr, rvalue references, default function template parameters, deleted/defaulted functions, noexcept, final, override and scoped enums. Don't use constexpr yet, as it would raise MSVC requirement.
16 lines
334 B
C++
16 lines
334 B
C++
// Copyright 2023 Andrey Semashev.
|
|
//
|
|
// 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
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
#include <boost/config.hpp>
|
|
|
|
int main()
|
|
{
|
|
boost::filesystem::path p(nullptr);
|
|
p = nullptr;
|
|
}
|