mirror of
https://github.com/N3xoX1/boost.git
synced 2026-03-09 10:48:15 -07:00
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;
|
|
}
|