Skip to content

Commit

Permalink
Trying to figure out iwyu - stopping for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-parent committed Jan 28, 2025
1 parent d9fe751 commit c899478
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,9 @@
"cacheVariables": {
"CMAKE_CXX_STANDARD": "17",
"CMAKE_BUILD_TYPE": "DEBUG",
"CMAKE_CXX_INCLUDE_WHAT_YOU_USE": "include-what-you-use"
"CMAKE_CXX_INCLUDE_WHAT_YOU_USE": "include-what-you-use;-Xiwyu;--mapping_file=/usr/local/Cellar/include-what-you-use/0.23/libexec/share/include-what-you-use/boost-all.imp"
}
}

],
"buildPresets": [
{
Expand Down
9 changes: 6 additions & 3 deletions include/stlab/concurrency/tuple_algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
#ifndef STLAB_CONCURRENCY_TUPLE_ALGORITHM_HPP
#define STLAB_CONCURRENCY_TUPLE_ALGORITHM_HPP

#include <stlab/config.hpp>
#include <stlab/config.hpp> // for STLAB_VERSION_NAMESPACE

// stdc++
#include <optional>
#include <tuple>
#include <cstddef> // for size_t
#include <optional> // for optional
#include <tuple> // for get, tuple, tuple_size, tuple_cat, tuple...
#include <type_traits> // for is_same_v, conditional_t, conditional
#include <utility> // for forward, index_sequence, declval, move

/**************************************************************************************************/

Expand Down

0 comments on commit c899478

Please sign in to comment.