MCPcopy Create free account
hub / github.com/boostorg/filesystem / print_boost_macros

Function print_boost_macros

example/file_status.cpp:24–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22path p;
23
24void print_boost_macros()
25{
26 std::cout << "Boost "
27 << BOOST_VERSION / 100000 << '.'
28 << BOOST_VERSION / 100 % 1000 << '.'
29 << BOOST_VERSION % 100 << ", "
30#ifndef _WIN64
31 << BOOST_COMPILER << ", "
32#else
33 << BOOST_COMPILER << " with _WIN64 defined, "
34#endif
35 << BOOST_STDLIB << ", "
36 << BOOST_PLATFORM
37 << std::endl;
38}
39
40const char* file_type_tab[] = { "status_error", "file_not_found", "regular_file", "directory_file",
41 "symlink_file", "block_file", "character_file", "fifo_file", "socket_file",

Callers 1

cpp_mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected