This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.20) | |
project(min LANGUAGES CXX) | |
message(STATUS "CMAKE_OSX_SYSROOT ${CMAKE_OSX_SYSROOT}") | |
foreach(i IN ITEMS OS_NAME OS_VERSION OS_RELEASE OS_PLATFORM) | |
cmake_host_system_information(RESULT ${i} QUERY ${i}) | |
message(STATUS "${i}: ${${i}}") | |
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.28) | |
project(module-pimpl CXX) | |
set(CMAKE_CXX_EXTENSIONS Off) | |
add_library(pimpl) | |
target_compile_features(pimpl PUBLIC cxx_std_20) | |
target_sources(pimpl PUBLIC | |
FILE_SET CXX_MODULES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <ranges> | |
namespace rx { | |
namespace rng = std::ranges; | |
template <rng::forward_range V, rng::forward_range Pattern> | |
requires rng::view<V> && rng::view<Pattern> && |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// make_vector.hpp | |
// | |
// Copyright (c) 2019 Tristan Brindle (tcbrindle at gmail dot com) | |
// Distributed under the Boost Software License, Version 1.0. (See | |
// http://www.boost.org/LICENSE_1_0.txt) | |
#include <type_traits> | |
#include <vector> | |
namespace tcb { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In file included from example.cpp:2: | |
In file included from /usr/local/Cellar/llvm/6.0.0/include/c++/v1/list:177: | |
/usr/local/Cellar/llvm/6.0.0/include/c++/v1/algorithm:4008:40: error: invalid operands to binary expression ('std::__1::__list_iterator<int, void *>' and 'std::__1::__list_iterator<int, void *>') | |
difference_type __len = __last - __first; | |
~~~~~~ ^ ~~~~~~~ | |
/usr/local/Cellar/llvm/6.0.0/include/c++/v1/algorithm:4201:5: note: in instantiation of function template specialization 'std::__1::__sort<std::__1::__less<int, int> &, std::__1::__list_iterator<int, void *> >' requested here | |
__sort<_Comp_ref>(__first, __last, __comp); | |
^ | |
/usr/local/Cellar/llvm/6.0.0/include/c++/v1/algorithm:4210:12: note: in instantiation of function template specialization 'std::__1::sort<std::__1::__list_iterator<int, void *>, std::__1::__less<int, int> >' requested here | |
_VSTD::sort(__first, __last, __less<typename iterator_traits<_RandomAccessIterator>::value_type>()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <chrono> | |
#include <cstring> | |
#include <string> | |
#include <fstream> | |
#include <istream> | |
#include <iostream> | |
#include <sstream> | |
#include <boost/tokenizer.hpp> |