From e55581f602aee672c0669e5f32829b3f2925c65f Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Fri, 14 Oct 2022 18:36:23 -0700 Subject: [PATCH] Add consolidation option to fix macro seepage --- include/uit_emp/Makefile | 1 + .../uit_emp/_codegen/make_consolidation.py | 41 + include/uit_emp/_codegen/make_facade.py | 2 + include/uit_emp/_codegen/make_push_macros.py | 5 + include/uit_emp/base/macros.hpp | 2 + include/uit_emp/config/config.hpp | 2 + include/uit_emp/data/DataFile.hpp | 2 + include/uit_emp/data/DataNode.hpp | 2 + include/uit_emp/datastructs/Cache.hpp | 2 + include/uit_emp/datastructs/QueueCache.hpp | 2 + include/uit_emp/datastructs/hash_utils.hpp | 2 + include/uit_emp/datastructs/tuple_utils.hpp | 2 + include/uit_emp/io/ContiguousStream.hpp | 2 + include/uit_emp/io/MemoryIStream.hpp | 2 + include/uit_emp/matching/MatchDepository.hpp | 2 + include/uit_emp/matching/matchbin_metrics.hpp | 2 + .../regulators/PlusCountdownRegulator.hpp | 2 + .../selectors_static/RankedSelector.hpp | 2 + include/uit_emp/math/Distribution.hpp | 2 + include/uit_emp/math/Random.hpp | 2 + include/uit_emp/math/math.hpp | 2 + include/uit_emp/math/random_utils.hpp | 2 + include/uit_emp/meta/TypePack.hpp | 2 + include/uit_emp/meta/meta.hpp | 2 + include/uit_emp/polyfill/span.hpp | 2 + include/uit_emp/tools/hash_namify.hpp | 2 + include/uit_emp/tools/keyname_utils.hpp | 2 + include/uit_emp/tools/string_utils.hpp | 2 + .../consolidate_context_switches.hpp | 46 + include/uit_emp/vendorization/push_macros.hh | 14765 ++++++++++++++++ include/uit_emp/vendorization/push_uit_emp.hh | 1 + 31 files changed, 14909 insertions(+) create mode 100755 include/uit_emp/_codegen/make_consolidation.py create mode 100644 include/uit_emp/vendorization/consolidate_context_switches.hpp diff --git a/include/uit_emp/Makefile b/include/uit_emp/Makefile index a92af3f06..4377cbb35 100644 --- a/include/uit_emp/Makefile +++ b/include/uit_emp/Makefile @@ -1,4 +1,5 @@ all: + ./_codegen/make_consolidation.py ./_codegen/make_facade.py ./_codegen/make_pop_headerguards.py ./_codegen/make_pop_macros.py diff --git a/include/uit_emp/_codegen/make_consolidation.py b/include/uit_emp/_codegen/make_consolidation.py new file mode 100755 index 000000000..1130ef1e7 --- /dev/null +++ b/include/uit_emp/_codegen/make_consolidation.py @@ -0,0 +1,41 @@ +#!/usr/bin/python3.10 + +import os +import textwrap + +from pylib import iter_header_paths + +def setup_one_entry(header_path: str) -> str: + return ( + f'#include "../../../third-party/Empirical/include/emp/{header_path}"' + ) + +header_guard = "UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE" +content = textwrap.dedent(f"""\ +#pragma once +#ifndef {header_guard} +#define {header_guard} + +// this header can be included by end users at the top of the translation unit +// to prevent macro inseep into the vendorized implementation + +#ifdef UIT_VENDORIZE_EMP +#include "push_uit_emp.hh" +#endif // #ifdef UIT_VENDORIZE_EMP + +{os.linesep.join((setup_one_entry(h) for h in iter_header_paths()))} + +#ifndef UIT_VENDORIZE_EMP +namespace emp {{}} +namespace uit_emp = emp; +#endif // #ifndef UIT_VENDORIZE_EMP + +#ifdef UIT_VENDORIZE_EMP +#include "pop_uit_emp.hh" +#endif // #ifdef UIT_VENDORIZE_EMP + +#endif // #ifndef {header_guard} +""") + +with open("vendorization/consolidate_context_switches.hpp", "w") as header_file: + header_file.write(content) diff --git a/include/uit_emp/_codegen/make_facade.py b/include/uit_emp/_codegen/make_facade.py index a21b35858..2232f0abf 100755 --- a/include/uit_emp/_codegen/make_facade.py +++ b/include/uit_emp/_codegen/make_facade.py @@ -19,6 +19,7 @@ def setup_one_facade(header_path: str) -> None: #pragma once #ifndef {header_guard} #define {header_guard} + #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "{relpath('vendorization/push_uit_emp.hh')}" @@ -37,6 +38,7 @@ def setup_one_facade(header_path: str) -> None: #include "{relpath('vendorization/pop_uit_emp.hh')}" #endif // #ifdef UIT_VENDORIZE_EMP + #endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef {header_guard} """) diff --git a/include/uit_emp/_codegen/make_push_macros.py b/include/uit_emp/_codegen/make_push_macros.py index bf371d24c..caf9741a9 100755 --- a/include/uit_emp/_codegen/make_push_macros.py +++ b/include/uit_emp/_codegen/make_push_macros.py @@ -33,6 +33,11 @@ " so outside definition will be used inside vendorized header"\\ " on subsequent includes of the vendorized header"\\ " --- if causes problems, try changing header include order"\\ + " or #include "\\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\\ + " at the top of your translation unit;"\\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\\ + " to silence this warning"\\ ) #endif #endif diff --git a/include/uit_emp/base/macros.hpp b/include/uit_emp/base/macros.hpp index 46e97a40d..275ac64ca 100644 --- a/include/uit_emp/base/macros.hpp +++ b/include/uit_emp/base/macros.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_BASE_MACROS_HPP_INCLUDE #define UIT_EMP_BASE_MACROS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_BASE_MACROS_HPP_INCLUDE diff --git a/include/uit_emp/config/config.hpp b/include/uit_emp/config/config.hpp index 034ac22c0..52fb2cadd 100644 --- a/include/uit_emp/config/config.hpp +++ b/include/uit_emp/config/config.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_CONFIG_CONFIG_HPP_INCLUDE #define UIT_EMP_CONFIG_CONFIG_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_CONFIG_CONFIG_HPP_INCLUDE diff --git a/include/uit_emp/data/DataFile.hpp b/include/uit_emp/data/DataFile.hpp index 3b51562b9..fe332e7ef 100644 --- a/include/uit_emp/data/DataFile.hpp +++ b/include/uit_emp/data/DataFile.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATA_DATAFILE_HPP_INCLUDE #define UIT_EMP_DATA_DATAFILE_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATA_DATAFILE_HPP_INCLUDE diff --git a/include/uit_emp/data/DataNode.hpp b/include/uit_emp/data/DataNode.hpp index e54e7b45d..41bcf76c4 100644 --- a/include/uit_emp/data/DataNode.hpp +++ b/include/uit_emp/data/DataNode.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATA_DATANODE_HPP_INCLUDE #define UIT_EMP_DATA_DATANODE_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATA_DATANODE_HPP_INCLUDE diff --git a/include/uit_emp/datastructs/Cache.hpp b/include/uit_emp/datastructs/Cache.hpp index ed2b22250..b395aa063 100644 --- a/include/uit_emp/datastructs/Cache.hpp +++ b/include/uit_emp/datastructs/Cache.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATASTRUCTS_CACHE_HPP_INCLUDE #define UIT_EMP_DATASTRUCTS_CACHE_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATASTRUCTS_CACHE_HPP_INCLUDE diff --git a/include/uit_emp/datastructs/QueueCache.hpp b/include/uit_emp/datastructs/QueueCache.hpp index 0da1b942b..8c1014f13 100644 --- a/include/uit_emp/datastructs/QueueCache.hpp +++ b/include/uit_emp/datastructs/QueueCache.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATASTRUCTS_QUEUECACHE_HPP_INCLUDE #define UIT_EMP_DATASTRUCTS_QUEUECACHE_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATASTRUCTS_QUEUECACHE_HPP_INCLUDE diff --git a/include/uit_emp/datastructs/hash_utils.hpp b/include/uit_emp/datastructs/hash_utils.hpp index f89fcd66d..c1c47f0ac 100644 --- a/include/uit_emp/datastructs/hash_utils.hpp +++ b/include/uit_emp/datastructs/hash_utils.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATASTRUCTS_HASH_UTILS_HPP_INCLUDE #define UIT_EMP_DATASTRUCTS_HASH_UTILS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATASTRUCTS_HASH_UTILS_HPP_INCLUDE diff --git a/include/uit_emp/datastructs/tuple_utils.hpp b/include/uit_emp/datastructs/tuple_utils.hpp index 7b326fd32..291389a03 100644 --- a/include/uit_emp/datastructs/tuple_utils.hpp +++ b/include/uit_emp/datastructs/tuple_utils.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_DATASTRUCTS_TUPLE_UTILS_HPP_INCLUDE #define UIT_EMP_DATASTRUCTS_TUPLE_UTILS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_DATASTRUCTS_TUPLE_UTILS_HPP_INCLUDE diff --git a/include/uit_emp/io/ContiguousStream.hpp b/include/uit_emp/io/ContiguousStream.hpp index ee1cf4ad2..7480bcd33 100644 --- a/include/uit_emp/io/ContiguousStream.hpp +++ b/include/uit_emp/io/ContiguousStream.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_IO_CONTIGUOUSSTREAM_HPP_INCLUDE #define UIT_EMP_IO_CONTIGUOUSSTREAM_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_IO_CONTIGUOUSSTREAM_HPP_INCLUDE diff --git a/include/uit_emp/io/MemoryIStream.hpp b/include/uit_emp/io/MemoryIStream.hpp index 7f12af604..631e6dece 100644 --- a/include/uit_emp/io/MemoryIStream.hpp +++ b/include/uit_emp/io/MemoryIStream.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_IO_MEMORYISTREAM_HPP_INCLUDE #define UIT_EMP_IO_MEMORYISTREAM_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_IO_MEMORYISTREAM_HPP_INCLUDE diff --git a/include/uit_emp/matching/MatchDepository.hpp b/include/uit_emp/matching/MatchDepository.hpp index 6878554aa..6ad223944 100644 --- a/include/uit_emp/matching/MatchDepository.hpp +++ b/include/uit_emp/matching/MatchDepository.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATCHING_MATCHDEPOSITORY_HPP_INCLUDE #define UIT_EMP_MATCHING_MATCHDEPOSITORY_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATCHING_MATCHDEPOSITORY_HPP_INCLUDE diff --git a/include/uit_emp/matching/matchbin_metrics.hpp b/include/uit_emp/matching/matchbin_metrics.hpp index 6cf07aec8..07073d9b7 100644 --- a/include/uit_emp/matching/matchbin_metrics.hpp +++ b/include/uit_emp/matching/matchbin_metrics.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATCHING_MATCHBIN_METRICS_HPP_INCLUDE #define UIT_EMP_MATCHING_MATCHBIN_METRICS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATCHING_MATCHBIN_METRICS_HPP_INCLUDE diff --git a/include/uit_emp/matching/regulators/PlusCountdownRegulator.hpp b/include/uit_emp/matching/regulators/PlusCountdownRegulator.hpp index 6272c1c5f..19c861705 100644 --- a/include/uit_emp/matching/regulators/PlusCountdownRegulator.hpp +++ b/include/uit_emp/matching/regulators/PlusCountdownRegulator.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATCHING_REGULATORS_PLUSCOUNTDOWNREGULATOR_HPP_INCLUDE #define UIT_EMP_MATCHING_REGULATORS_PLUSCOUNTDOWNREGULATOR_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATCHING_REGULATORS_PLUSCOUNTDOWNREGULATOR_HPP_INCLUDE diff --git a/include/uit_emp/matching/selectors_static/RankedSelector.hpp b/include/uit_emp/matching/selectors_static/RankedSelector.hpp index 2673f85a0..b1164b2f2 100644 --- a/include/uit_emp/matching/selectors_static/RankedSelector.hpp +++ b/include/uit_emp/matching/selectors_static/RankedSelector.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATCHING_SELECTORS_STATIC_RANKEDSELECTOR_HPP_INCLUDE #define UIT_EMP_MATCHING_SELECTORS_STATIC_RANKEDSELECTOR_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATCHING_SELECTORS_STATIC_RANKEDSELECTOR_HPP_INCLUDE diff --git a/include/uit_emp/math/Distribution.hpp b/include/uit_emp/math/Distribution.hpp index d45f4a934..d03f56f39 100644 --- a/include/uit_emp/math/Distribution.hpp +++ b/include/uit_emp/math/Distribution.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATH_DISTRIBUTION_HPP_INCLUDE #define UIT_EMP_MATH_DISTRIBUTION_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATH_DISTRIBUTION_HPP_INCLUDE diff --git a/include/uit_emp/math/Random.hpp b/include/uit_emp/math/Random.hpp index f64edbb5c..ce04601ed 100644 --- a/include/uit_emp/math/Random.hpp +++ b/include/uit_emp/math/Random.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATH_RANDOM_HPP_INCLUDE #define UIT_EMP_MATH_RANDOM_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATH_RANDOM_HPP_INCLUDE diff --git a/include/uit_emp/math/math.hpp b/include/uit_emp/math/math.hpp index 49791b8dd..dd6d73320 100644 --- a/include/uit_emp/math/math.hpp +++ b/include/uit_emp/math/math.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATH_MATH_HPP_INCLUDE #define UIT_EMP_MATH_MATH_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATH_MATH_HPP_INCLUDE diff --git a/include/uit_emp/math/random_utils.hpp b/include/uit_emp/math/random_utils.hpp index 397578150..f489e8539 100644 --- a/include/uit_emp/math/random_utils.hpp +++ b/include/uit_emp/math/random_utils.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_MATH_RANDOM_UTILS_HPP_INCLUDE #define UIT_EMP_MATH_RANDOM_UTILS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_MATH_RANDOM_UTILS_HPP_INCLUDE diff --git a/include/uit_emp/meta/TypePack.hpp b/include/uit_emp/meta/TypePack.hpp index 92deca6f3..1c5f18b56 100644 --- a/include/uit_emp/meta/TypePack.hpp +++ b/include/uit_emp/meta/TypePack.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_META_TYPEPACK_HPP_INCLUDE #define UIT_EMP_META_TYPEPACK_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_META_TYPEPACK_HPP_INCLUDE diff --git a/include/uit_emp/meta/meta.hpp b/include/uit_emp/meta/meta.hpp index 4539189cb..008b6a2c3 100644 --- a/include/uit_emp/meta/meta.hpp +++ b/include/uit_emp/meta/meta.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_META_META_HPP_INCLUDE #define UIT_EMP_META_META_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_META_META_HPP_INCLUDE diff --git a/include/uit_emp/polyfill/span.hpp b/include/uit_emp/polyfill/span.hpp index fdc30c5af..6225f7c05 100644 --- a/include/uit_emp/polyfill/span.hpp +++ b/include/uit_emp/polyfill/span.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_POLYFILL_SPAN_HPP_INCLUDE #define UIT_EMP_POLYFILL_SPAN_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_POLYFILL_SPAN_HPP_INCLUDE diff --git a/include/uit_emp/tools/hash_namify.hpp b/include/uit_emp/tools/hash_namify.hpp index edc55cf8b..787965d5c 100644 --- a/include/uit_emp/tools/hash_namify.hpp +++ b/include/uit_emp/tools/hash_namify.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_TOOLS_HASH_NAMIFY_HPP_INCLUDE #define UIT_EMP_TOOLS_HASH_NAMIFY_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_TOOLS_HASH_NAMIFY_HPP_INCLUDE diff --git a/include/uit_emp/tools/keyname_utils.hpp b/include/uit_emp/tools/keyname_utils.hpp index 7e66670d6..348202771 100644 --- a/include/uit_emp/tools/keyname_utils.hpp +++ b/include/uit_emp/tools/keyname_utils.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_TOOLS_KEYNAME_UTILS_HPP_INCLUDE #define UIT_EMP_TOOLS_KEYNAME_UTILS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_TOOLS_KEYNAME_UTILS_HPP_INCLUDE diff --git a/include/uit_emp/tools/string_utils.hpp b/include/uit_emp/tools/string_utils.hpp index 55efafe31..fcabec398 100644 --- a/include/uit_emp/tools/string_utils.hpp +++ b/include/uit_emp/tools/string_utils.hpp @@ -1,6 +1,7 @@ #pragma once #ifndef UIT_EMP_TOOLS_STRING_UTILS_HPP_INCLUDE #define UIT_EMP_TOOLS_STRING_UTILS_HPP_INCLUDE +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #ifdef UIT_VENDORIZE_EMP #include "../vendorization/push_uit_emp.hh" @@ -17,4 +18,5 @@ namespace uit_emp = emp; #include "../vendorization/pop_uit_emp.hh" #endif // #ifdef UIT_VENDORIZE_EMP +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE #endif // #ifndef UIT_EMP_TOOLS_STRING_UTILS_HPP_INCLUDE diff --git a/include/uit_emp/vendorization/consolidate_context_switches.hpp b/include/uit_emp/vendorization/consolidate_context_switches.hpp new file mode 100644 index 000000000..893ee410a --- /dev/null +++ b/include/uit_emp/vendorization/consolidate_context_switches.hpp @@ -0,0 +1,46 @@ +#pragma once +#ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE +#define UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE + +// this header can be included by end users at the top of the translation unit +// to prevent macro inseep into the vendorized implementation + +#ifdef UIT_VENDORIZE_EMP +#include "push_uit_emp.hh" +#endif // #ifdef UIT_VENDORIZE_EMP + +#include "../../../third-party/Empirical/include/emp/base/macros.hpp" +#include "../../../third-party/Empirical/include/emp/config/config.hpp" +#include "../../../third-party/Empirical/include/emp/data/DataNode.hpp" +#include "../../../third-party/Empirical/include/emp/data/DataFile.hpp" +#include "../../../third-party/Empirical/include/emp/datastructs/Cache.hpp" +#include "../../../third-party/Empirical/include/emp/datastructs/hash_utils.hpp" +#include "../../../third-party/Empirical/include/emp/datastructs/tuple_utils.hpp" +#include "../../../third-party/Empirical/include/emp/datastructs/QueueCache.hpp" +#include "../../../third-party/Empirical/include/emp/io/ContiguousStream.hpp" +#include "../../../third-party/Empirical/include/emp/io/MemoryIStream.hpp" +#include "../../../third-party/Empirical/include/emp/matching/matchbin_metrics.hpp" +#include "../../../third-party/Empirical/include/emp/matching/MatchDepository.hpp" +#include "../../../third-party/Empirical/include/emp/matching/regulators/PlusCountdownRegulator.hpp" +#include "../../../third-party/Empirical/include/emp/matching/selectors_static/RankedSelector.hpp" +#include "../../../third-party/Empirical/include/emp/math/Distribution.hpp" +#include "../../../third-party/Empirical/include/emp/math/math.hpp" +#include "../../../third-party/Empirical/include/emp/math/Random.hpp" +#include "../../../third-party/Empirical/include/emp/math/random_utils.hpp" +#include "../../../third-party/Empirical/include/emp/meta/meta.hpp" +#include "../../../third-party/Empirical/include/emp/meta/TypePack.hpp" +#include "../../../third-party/Empirical/include/emp/polyfill/span.hpp" +#include "../../../third-party/Empirical/include/emp/tools/hash_namify.hpp" +#include "../../../third-party/Empirical/include/emp/tools/string_utils.hpp" +#include "../../../third-party/Empirical/include/emp/tools/keyname_utils.hpp" + +#ifndef UIT_VENDORIZE_EMP +namespace emp {} +namespace uit_emp = emp; +#endif // #ifndef UIT_VENDORIZE_EMP + +#ifdef UIT_VENDORIZE_EMP +#include "pop_uit_emp.hh" +#endif // #ifdef UIT_VENDORIZE_EMP + +#endif // #ifndef UIT_EMP_VENDORIZATION_CONSOLIDATE_CONTEXT_SWITCHES_HPP_INCLUDE diff --git a/include/uit_emp/vendorization/push_macros.hh b/include/uit_emp/vendorization/push_macros.hh index 06d736d83..2be5c104f 100644 --- a/include/uit_emp/vendorization/push_macros.hh +++ b/include/uit_emp/vendorization/push_macros.hh @@ -25,6 +25,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63,6 +68,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101,6 +111,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -139,6 +154,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -177,6 +197,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -215,6 +240,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -253,6 +283,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -291,6 +326,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -329,6 +369,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -367,6 +412,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -405,6 +455,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -443,6 +498,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -481,6 +541,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -519,6 +584,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -557,6 +627,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -595,6 +670,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -633,6 +713,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -671,6 +756,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -709,6 +799,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -747,6 +842,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -785,6 +885,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -823,6 +928,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -861,6 +971,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -899,6 +1014,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -937,6 +1057,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -975,6 +1100,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1013,6 +1143,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1051,6 +1186,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1089,6 +1229,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1127,6 +1272,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1165,6 +1315,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1203,6 +1358,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1241,6 +1401,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1279,6 +1444,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1317,6 +1487,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1355,6 +1530,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1393,6 +1573,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1431,6 +1616,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1469,6 +1659,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1507,6 +1702,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1545,6 +1745,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1583,6 +1788,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1621,6 +1831,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1659,6 +1874,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1697,6 +1917,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1735,6 +1960,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1773,6 +2003,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1811,6 +2046,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1849,6 +2089,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1887,6 +2132,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1925,6 +2175,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -1963,6 +2218,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2001,6 +2261,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2039,6 +2304,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2077,6 +2347,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2115,6 +2390,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2153,6 +2433,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2191,6 +2476,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2229,6 +2519,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2267,6 +2562,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2305,6 +2605,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2343,6 +2648,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2381,6 +2691,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2419,6 +2734,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2457,6 +2777,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2495,6 +2820,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2533,6 +2863,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2571,6 +2906,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2609,6 +2949,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2647,6 +2992,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2685,6 +3035,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2723,6 +3078,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2761,6 +3121,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2799,6 +3164,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2837,6 +3207,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2875,6 +3250,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2913,6 +3293,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2951,6 +3336,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -2989,6 +3379,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3027,6 +3422,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3065,6 +3465,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3103,6 +3508,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3141,6 +3551,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3179,6 +3594,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3217,6 +3637,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3255,6 +3680,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3293,6 +3723,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3331,6 +3766,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3369,6 +3809,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3407,6 +3852,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3445,6 +3895,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3483,6 +3938,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3521,6 +3981,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3559,6 +4024,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3597,6 +4067,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3635,6 +4110,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3673,6 +4153,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3711,6 +4196,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3749,6 +4239,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3787,6 +4282,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3825,6 +4325,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3863,6 +4368,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3901,6 +4411,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3939,6 +4454,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -3977,6 +4497,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4015,6 +4540,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4053,6 +4583,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4091,6 +4626,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4129,6 +4669,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4167,6 +4712,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4205,6 +4755,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4243,6 +4798,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4281,6 +4841,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4319,6 +4884,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4357,6 +4927,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4395,6 +4970,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4433,6 +5013,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4471,6 +5056,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4509,6 +5099,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4547,6 +5142,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4585,6 +5185,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4623,6 +5228,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4661,6 +5271,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4699,6 +5314,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4737,6 +5357,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4775,6 +5400,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4813,6 +5443,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4851,6 +5486,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4889,6 +5529,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4927,6 +5572,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -4965,6 +5615,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5003,6 +5658,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5041,6 +5701,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5079,6 +5744,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5117,6 +5787,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5155,6 +5830,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5193,6 +5873,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5231,6 +5916,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5269,6 +5959,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5307,6 +6002,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5345,6 +6045,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5383,6 +6088,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5421,6 +6131,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5459,6 +6174,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5497,6 +6217,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5535,6 +6260,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5573,6 +6303,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5611,6 +6346,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5649,6 +6389,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5687,6 +6432,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5725,6 +6475,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5763,6 +6518,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5801,6 +6561,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5839,6 +6604,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5877,6 +6647,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5915,6 +6690,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5953,6 +6733,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -5991,6 +6776,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6029,6 +6819,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6067,6 +6862,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6105,6 +6905,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6143,6 +6948,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6181,6 +6991,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6219,6 +7034,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6257,6 +7077,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6295,6 +7120,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6333,6 +7163,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6371,6 +7206,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6409,6 +7249,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6447,6 +7292,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6485,6 +7335,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6523,6 +7378,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6561,6 +7421,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6599,6 +7464,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6637,6 +7507,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6675,6 +7550,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6713,6 +7593,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6751,6 +7636,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6789,6 +7679,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6827,6 +7722,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6865,6 +7765,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6903,6 +7808,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6941,6 +7851,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -6979,6 +7894,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7017,6 +7937,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7055,6 +7980,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7093,6 +8023,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7131,6 +8066,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7169,6 +8109,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7207,6 +8152,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7245,6 +8195,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7283,6 +8238,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7321,6 +8281,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7359,6 +8324,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7397,6 +8367,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7435,6 +8410,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7473,6 +8453,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7511,6 +8496,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7549,6 +8539,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7587,6 +8582,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7625,6 +8625,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7663,6 +8668,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7701,6 +8711,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7739,6 +8754,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7777,6 +8797,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7815,6 +8840,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7853,6 +8883,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7891,6 +8926,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7929,6 +8969,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -7967,6 +9012,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8005,6 +9055,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8043,6 +9098,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8081,6 +9141,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8119,6 +9184,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8157,6 +9227,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8195,6 +9270,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8233,6 +9313,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8271,6 +9356,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8309,6 +9399,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8347,6 +9442,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8385,6 +9485,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8423,6 +9528,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8461,6 +9571,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8499,6 +9614,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8537,6 +9657,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8575,6 +9700,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8613,6 +9743,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8651,6 +9786,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8689,6 +9829,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8727,6 +9872,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8765,6 +9915,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8803,6 +9958,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8841,6 +10001,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8879,6 +10044,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8917,6 +10087,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8955,6 +10130,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -8993,6 +10173,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9031,6 +10216,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9069,6 +10259,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9107,6 +10302,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9145,6 +10345,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9183,6 +10388,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9221,6 +10431,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9259,6 +10474,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9297,6 +10517,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9335,6 +10560,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9373,6 +10603,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9411,6 +10646,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9449,6 +10689,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9487,6 +10732,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9525,6 +10775,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9563,6 +10818,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9601,6 +10861,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9639,6 +10904,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9677,6 +10947,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9715,6 +10990,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9753,6 +11033,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9791,6 +11076,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9829,6 +11119,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9867,6 +11162,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9905,6 +11205,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9943,6 +11248,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -9981,6 +11291,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10019,6 +11334,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10057,6 +11377,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10095,6 +11420,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10133,6 +11463,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10171,6 +11506,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10209,6 +11549,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10247,6 +11592,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10285,6 +11635,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10323,6 +11678,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10361,6 +11721,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10399,6 +11764,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10437,6 +11807,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10475,6 +11850,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10513,6 +11893,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10551,6 +11936,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10589,6 +11979,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10627,6 +12022,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10665,6 +12065,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10703,6 +12108,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10741,6 +12151,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10779,6 +12194,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10817,6 +12237,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10855,6 +12280,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10893,6 +12323,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10931,6 +12366,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -10969,6 +12409,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11007,6 +12452,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11045,6 +12495,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11083,6 +12538,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11121,6 +12581,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11159,6 +12624,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11197,6 +12667,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11235,6 +12710,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11273,6 +12753,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11311,6 +12796,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11349,6 +12839,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11387,6 +12882,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11425,6 +12925,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11463,6 +12968,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11501,6 +13011,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11539,6 +13054,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11577,6 +13097,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11615,6 +13140,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11653,6 +13183,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11691,6 +13226,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11729,6 +13269,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11767,6 +13312,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11805,6 +13355,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11843,6 +13398,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11881,6 +13441,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11919,6 +13484,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11957,6 +13527,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -11995,6 +13570,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12033,6 +13613,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12071,6 +13656,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12109,6 +13699,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12147,6 +13742,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12185,6 +13785,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12223,6 +13828,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12261,6 +13871,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12299,6 +13914,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12337,6 +13957,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12375,6 +14000,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12413,6 +14043,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12451,6 +14086,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12489,6 +14129,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12527,6 +14172,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12565,6 +14215,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12603,6 +14258,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12641,6 +14301,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12679,6 +14344,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12717,6 +14387,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12755,6 +14430,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12793,6 +14473,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12831,6 +14516,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12869,6 +14559,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12907,6 +14602,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12945,6 +14645,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -12983,6 +14688,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13021,6 +14731,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13059,6 +14774,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13097,6 +14817,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13135,6 +14860,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13173,6 +14903,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13211,6 +14946,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13249,6 +14989,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13287,6 +15032,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13325,6 +15075,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13363,6 +15118,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13401,6 +15161,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13439,6 +15204,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13477,6 +15247,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13515,6 +15290,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13553,6 +15333,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13591,6 +15376,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13629,6 +15419,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13667,6 +15462,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13705,6 +15505,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13743,6 +15548,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13781,6 +15591,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13819,6 +15634,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13857,6 +15677,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13895,6 +15720,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13933,6 +15763,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -13971,6 +15806,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14009,6 +15849,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14047,6 +15892,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14085,6 +15935,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14123,6 +15978,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14161,6 +16021,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14199,6 +16064,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14237,6 +16107,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14275,6 +16150,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14313,6 +16193,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14351,6 +16236,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14389,6 +16279,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14427,6 +16322,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14465,6 +16365,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14503,6 +16408,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14541,6 +16451,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14579,6 +16494,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14617,6 +16537,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14655,6 +16580,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14693,6 +16623,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14731,6 +16666,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14769,6 +16709,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14807,6 +16752,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14845,6 +16795,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14883,6 +16838,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14921,6 +16881,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14959,6 +16924,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -14997,6 +16967,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15035,6 +17010,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15073,6 +17053,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15111,6 +17096,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15149,6 +17139,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15187,6 +17182,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15225,6 +17225,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15263,6 +17268,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15301,6 +17311,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15339,6 +17354,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15377,6 +17397,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15415,6 +17440,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15453,6 +17483,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15491,6 +17526,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15529,6 +17569,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15567,6 +17612,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15605,6 +17655,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15643,6 +17698,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15681,6 +17741,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15719,6 +17784,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15757,6 +17827,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15795,6 +17870,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15833,6 +17913,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15871,6 +17956,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15909,6 +17999,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15947,6 +18042,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -15985,6 +18085,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16023,6 +18128,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16061,6 +18171,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16099,6 +18214,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16137,6 +18257,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16175,6 +18300,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16213,6 +18343,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16251,6 +18386,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16289,6 +18429,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16327,6 +18472,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16365,6 +18515,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16403,6 +18558,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16441,6 +18601,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16479,6 +18644,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16517,6 +18687,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16555,6 +18730,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16593,6 +18773,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16631,6 +18816,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16669,6 +18859,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16707,6 +18902,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16745,6 +18945,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16783,6 +18988,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16821,6 +19031,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16859,6 +19074,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16897,6 +19117,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16935,6 +19160,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -16973,6 +19203,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17011,6 +19246,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17049,6 +19289,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17087,6 +19332,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17125,6 +19375,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17163,6 +19418,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17201,6 +19461,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17239,6 +19504,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17277,6 +19547,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17315,6 +19590,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17353,6 +19633,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17391,6 +19676,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17429,6 +19719,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17467,6 +19762,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17505,6 +19805,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17543,6 +19848,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17581,6 +19891,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17619,6 +19934,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17657,6 +19977,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17695,6 +20020,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17733,6 +20063,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17771,6 +20106,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17809,6 +20149,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17847,6 +20192,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17885,6 +20235,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17923,6 +20278,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17961,6 +20321,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -17999,6 +20364,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18037,6 +20407,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18075,6 +20450,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18113,6 +20493,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18151,6 +20536,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18189,6 +20579,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18227,6 +20622,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18265,6 +20665,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18303,6 +20708,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18341,6 +20751,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18379,6 +20794,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18417,6 +20837,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18455,6 +20880,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18493,6 +20923,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18531,6 +20966,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18569,6 +21009,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18607,6 +21052,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18645,6 +21095,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18683,6 +21138,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18721,6 +21181,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18759,6 +21224,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18797,6 +21267,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18835,6 +21310,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18873,6 +21353,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18911,6 +21396,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18949,6 +21439,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -18987,6 +21482,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19025,6 +21525,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19063,6 +21568,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19101,6 +21611,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19139,6 +21654,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19177,6 +21697,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19215,6 +21740,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19253,6 +21783,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19291,6 +21826,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19329,6 +21869,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19367,6 +21912,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19405,6 +21955,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19443,6 +21998,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19481,6 +22041,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19519,6 +22084,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19557,6 +22127,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19595,6 +22170,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19633,6 +22213,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19671,6 +22256,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19709,6 +22299,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19747,6 +22342,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19785,6 +22385,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19823,6 +22428,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19861,6 +22471,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19899,6 +22514,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19937,6 +22557,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -19975,6 +22600,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20013,6 +22643,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20051,6 +22686,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20089,6 +22729,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20127,6 +22772,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20165,6 +22815,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20203,6 +22858,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20241,6 +22901,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20279,6 +22944,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20317,6 +22987,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20355,6 +23030,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20393,6 +23073,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20431,6 +23116,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20469,6 +23159,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20507,6 +23202,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20545,6 +23245,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20583,6 +23288,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20621,6 +23331,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20659,6 +23374,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20697,6 +23417,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20735,6 +23460,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20773,6 +23503,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20811,6 +23546,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20849,6 +23589,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20887,6 +23632,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20925,6 +23675,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -20963,6 +23718,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21001,6 +23761,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21039,6 +23804,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21077,6 +23847,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21115,6 +23890,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21153,6 +23933,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21191,6 +23976,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21229,6 +24019,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21267,6 +24062,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21305,6 +24105,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21343,6 +24148,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21381,6 +24191,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21419,6 +24234,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21457,6 +24277,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21495,6 +24320,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21533,6 +24363,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21571,6 +24406,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21609,6 +24449,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21647,6 +24492,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21685,6 +24535,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21723,6 +24578,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21761,6 +24621,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21799,6 +24664,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21837,6 +24707,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21875,6 +24750,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21913,6 +24793,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21951,6 +24836,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -21989,6 +24879,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22027,6 +24922,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22065,6 +24965,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22103,6 +25008,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22141,6 +25051,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22179,6 +25094,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22217,6 +25137,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22255,6 +25180,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22293,6 +25223,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22331,6 +25266,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22369,6 +25309,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22407,6 +25352,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22445,6 +25395,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22483,6 +25438,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22521,6 +25481,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22559,6 +25524,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22597,6 +25567,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22635,6 +25610,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22673,6 +25653,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22711,6 +25696,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22749,6 +25739,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22787,6 +25782,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22825,6 +25825,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22863,6 +25868,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22901,6 +25911,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22939,6 +25954,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -22977,6 +25997,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23015,6 +26040,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23053,6 +26083,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23091,6 +26126,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23129,6 +26169,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23167,6 +26212,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23205,6 +26255,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23243,6 +26298,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23281,6 +26341,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23319,6 +26384,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23357,6 +26427,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23395,6 +26470,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23433,6 +26513,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23471,6 +26556,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23509,6 +26599,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23547,6 +26642,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23585,6 +26685,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23623,6 +26728,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23661,6 +26771,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23699,6 +26814,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23737,6 +26857,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23775,6 +26900,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23813,6 +26943,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23851,6 +26986,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23889,6 +27029,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23927,6 +27072,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -23965,6 +27115,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24003,6 +27158,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24041,6 +27201,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24079,6 +27244,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24117,6 +27287,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24155,6 +27330,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24193,6 +27373,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24231,6 +27416,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24269,6 +27459,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24307,6 +27502,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24345,6 +27545,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24383,6 +27588,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24421,6 +27631,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24459,6 +27674,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24497,6 +27717,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24535,6 +27760,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24573,6 +27803,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24611,6 +27846,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24649,6 +27889,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24687,6 +27932,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24725,6 +27975,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24763,6 +28018,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24801,6 +28061,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24839,6 +28104,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24877,6 +28147,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24915,6 +28190,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24953,6 +28233,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -24991,6 +28276,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25029,6 +28319,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25067,6 +28362,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25105,6 +28405,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25143,6 +28448,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25181,6 +28491,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25219,6 +28534,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25257,6 +28577,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25295,6 +28620,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25333,6 +28663,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25371,6 +28706,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25409,6 +28749,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25447,6 +28792,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25485,6 +28835,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25523,6 +28878,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25561,6 +28921,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25599,6 +28964,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25637,6 +29007,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25675,6 +29050,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25713,6 +29093,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25751,6 +29136,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25789,6 +29179,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25827,6 +29222,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25865,6 +29265,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25903,6 +29308,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25941,6 +29351,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -25979,6 +29394,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26017,6 +29437,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26055,6 +29480,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26093,6 +29523,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26131,6 +29566,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26169,6 +29609,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26207,6 +29652,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26245,6 +29695,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26283,6 +29738,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26321,6 +29781,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26359,6 +29824,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26397,6 +29867,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26435,6 +29910,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26473,6 +29953,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26511,6 +29996,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26549,6 +30039,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26587,6 +30082,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26625,6 +30125,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26663,6 +30168,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26701,6 +30211,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26739,6 +30254,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26777,6 +30297,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26815,6 +30340,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26853,6 +30383,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26891,6 +30426,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26929,6 +30469,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -26967,6 +30512,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27005,6 +30555,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27043,6 +30598,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27081,6 +30641,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27119,6 +30684,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27157,6 +30727,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27195,6 +30770,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27233,6 +30813,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27271,6 +30856,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27309,6 +30899,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27347,6 +30942,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27385,6 +30985,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27423,6 +31028,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27461,6 +31071,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27499,6 +31114,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27537,6 +31157,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27575,6 +31200,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27613,6 +31243,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27651,6 +31286,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27689,6 +31329,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27727,6 +31372,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27765,6 +31415,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27803,6 +31458,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27841,6 +31501,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27879,6 +31544,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27917,6 +31587,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27955,6 +31630,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -27993,6 +31673,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28031,6 +31716,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28069,6 +31759,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28107,6 +31802,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28145,6 +31845,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28183,6 +31888,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28221,6 +31931,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28259,6 +31974,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28297,6 +32017,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28335,6 +32060,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28373,6 +32103,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28411,6 +32146,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28449,6 +32189,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28487,6 +32232,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28525,6 +32275,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28563,6 +32318,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28601,6 +32361,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28639,6 +32404,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28677,6 +32447,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28715,6 +32490,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28753,6 +32533,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28791,6 +32576,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28829,6 +32619,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28867,6 +32662,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28905,6 +32705,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28943,6 +32748,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -28981,6 +32791,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29019,6 +32834,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29057,6 +32877,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29095,6 +32920,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29133,6 +32963,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29171,6 +33006,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29209,6 +33049,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29247,6 +33092,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29285,6 +33135,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29323,6 +33178,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29361,6 +33221,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29399,6 +33264,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29437,6 +33307,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29475,6 +33350,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29513,6 +33393,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29551,6 +33436,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29589,6 +33479,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29627,6 +33522,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29665,6 +33565,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29703,6 +33608,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29741,6 +33651,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29779,6 +33694,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29817,6 +33737,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29855,6 +33780,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29893,6 +33823,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29931,6 +33866,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -29969,6 +33909,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30007,6 +33952,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30045,6 +33995,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30083,6 +34038,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30121,6 +34081,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30159,6 +34124,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30197,6 +34167,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30235,6 +34210,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30273,6 +34253,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30311,6 +34296,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30349,6 +34339,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30387,6 +34382,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30425,6 +34425,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30463,6 +34468,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30501,6 +34511,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30539,6 +34554,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30577,6 +34597,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30615,6 +34640,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30653,6 +34683,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30691,6 +34726,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30729,6 +34769,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30767,6 +34812,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30805,6 +34855,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30843,6 +34898,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30881,6 +34941,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30919,6 +34984,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30957,6 +35027,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -30995,6 +35070,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31033,6 +35113,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31071,6 +35156,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31109,6 +35199,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31147,6 +35242,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31185,6 +35285,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31223,6 +35328,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31261,6 +35371,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31299,6 +35414,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31337,6 +35457,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31375,6 +35500,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31413,6 +35543,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31451,6 +35586,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31489,6 +35629,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31527,6 +35672,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31565,6 +35715,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31603,6 +35758,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31641,6 +35801,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31679,6 +35844,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31717,6 +35887,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31755,6 +35930,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31793,6 +35973,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31831,6 +36016,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31869,6 +36059,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31907,6 +36102,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31945,6 +36145,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -31983,6 +36188,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32021,6 +36231,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32059,6 +36274,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32097,6 +36317,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32135,6 +36360,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32173,6 +36403,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32211,6 +36446,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32249,6 +36489,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32287,6 +36532,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32325,6 +36575,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32363,6 +36618,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32401,6 +36661,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32439,6 +36704,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32477,6 +36747,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32515,6 +36790,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32553,6 +36833,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32591,6 +36876,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32629,6 +36919,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32667,6 +36962,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32705,6 +37005,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32743,6 +37048,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32781,6 +37091,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32819,6 +37134,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32857,6 +37177,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32895,6 +37220,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32933,6 +37263,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -32971,6 +37306,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33009,6 +37349,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33047,6 +37392,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33085,6 +37435,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33123,6 +37478,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33161,6 +37521,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33199,6 +37564,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33237,6 +37607,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33275,6 +37650,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33313,6 +37693,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33351,6 +37736,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33389,6 +37779,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33427,6 +37822,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33465,6 +37865,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33503,6 +37908,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33541,6 +37951,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33579,6 +37994,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33617,6 +38037,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33655,6 +38080,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33693,6 +38123,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33731,6 +38166,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33769,6 +38209,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33807,6 +38252,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33845,6 +38295,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33883,6 +38338,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33921,6 +38381,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33959,6 +38424,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -33997,6 +38467,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34035,6 +38510,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34073,6 +38553,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34111,6 +38596,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34149,6 +38639,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34187,6 +38682,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34225,6 +38725,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34263,6 +38768,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34301,6 +38811,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34339,6 +38854,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34377,6 +38897,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34415,6 +38940,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34453,6 +38983,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34491,6 +39026,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34529,6 +39069,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34567,6 +39112,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34605,6 +39155,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34643,6 +39198,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34681,6 +39241,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34719,6 +39284,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34757,6 +39327,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34795,6 +39370,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34833,6 +39413,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34871,6 +39456,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34909,6 +39499,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34947,6 +39542,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -34985,6 +39585,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35023,6 +39628,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35061,6 +39671,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35099,6 +39714,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35137,6 +39757,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35175,6 +39800,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35213,6 +39843,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35251,6 +39886,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35289,6 +39929,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35327,6 +39972,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35365,6 +40015,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35403,6 +40058,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35441,6 +40101,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35479,6 +40144,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35517,6 +40187,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35555,6 +40230,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35593,6 +40273,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35631,6 +40316,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35669,6 +40359,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35707,6 +40402,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35745,6 +40445,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35783,6 +40488,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35821,6 +40531,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35859,6 +40574,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35897,6 +40617,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35935,6 +40660,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -35973,6 +40703,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36011,6 +40746,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36049,6 +40789,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36087,6 +40832,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36125,6 +40875,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36163,6 +40918,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36201,6 +40961,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36239,6 +41004,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36277,6 +41047,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36315,6 +41090,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36353,6 +41133,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36391,6 +41176,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36429,6 +41219,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36467,6 +41262,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36505,6 +41305,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36543,6 +41348,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36581,6 +41391,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36619,6 +41434,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36657,6 +41477,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36695,6 +41520,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36733,6 +41563,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36771,6 +41606,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36809,6 +41649,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36847,6 +41692,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36885,6 +41735,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36923,6 +41778,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36961,6 +41821,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -36999,6 +41864,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37037,6 +41907,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37075,6 +41950,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37113,6 +41993,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37151,6 +42036,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37189,6 +42079,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37227,6 +42122,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37265,6 +42165,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37303,6 +42208,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37341,6 +42251,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37379,6 +42294,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37417,6 +42337,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37455,6 +42380,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37493,6 +42423,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37531,6 +42466,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37569,6 +42509,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37607,6 +42552,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37645,6 +42595,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37683,6 +42638,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37721,6 +42681,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37759,6 +42724,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37797,6 +42767,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37835,6 +42810,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37873,6 +42853,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37911,6 +42896,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37949,6 +42939,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -37987,6 +42982,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38025,6 +43025,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38063,6 +43068,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38101,6 +43111,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38139,6 +43154,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38177,6 +43197,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38215,6 +43240,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38253,6 +43283,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38291,6 +43326,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38329,6 +43369,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38367,6 +43412,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38405,6 +43455,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38443,6 +43498,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38481,6 +43541,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38519,6 +43584,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38557,6 +43627,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38595,6 +43670,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38633,6 +43713,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38671,6 +43756,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38709,6 +43799,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38747,6 +43842,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38785,6 +43885,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38823,6 +43928,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38861,6 +43971,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38899,6 +44014,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38937,6 +44057,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -38975,6 +44100,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39013,6 +44143,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39051,6 +44186,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39089,6 +44229,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39127,6 +44272,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39165,6 +44315,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39203,6 +44358,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39241,6 +44401,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39279,6 +44444,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39317,6 +44487,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39355,6 +44530,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39393,6 +44573,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39431,6 +44616,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39469,6 +44659,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39507,6 +44702,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39545,6 +44745,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39583,6 +44788,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39621,6 +44831,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39659,6 +44874,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39697,6 +44917,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39735,6 +44960,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39773,6 +45003,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39811,6 +45046,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39849,6 +45089,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39887,6 +45132,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39925,6 +45175,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -39963,6 +45218,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40001,6 +45261,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40039,6 +45304,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40077,6 +45347,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40115,6 +45390,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40153,6 +45433,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40191,6 +45476,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40229,6 +45519,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40267,6 +45562,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40305,6 +45605,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40343,6 +45648,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40381,6 +45691,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40419,6 +45734,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40457,6 +45777,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40495,6 +45820,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40533,6 +45863,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40571,6 +45906,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40609,6 +45949,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40647,6 +45992,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40685,6 +46035,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40723,6 +46078,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40761,6 +46121,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40799,6 +46164,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40837,6 +46207,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40875,6 +46250,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40913,6 +46293,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40951,6 +46336,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -40989,6 +46379,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41027,6 +46422,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41065,6 +46465,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41103,6 +46508,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41141,6 +46551,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41179,6 +46594,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41217,6 +46637,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41255,6 +46680,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41293,6 +46723,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41331,6 +46766,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41369,6 +46809,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41407,6 +46852,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41445,6 +46895,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41483,6 +46938,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41521,6 +46981,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41559,6 +47024,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41597,6 +47067,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41635,6 +47110,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41673,6 +47153,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41711,6 +47196,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41749,6 +47239,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41787,6 +47282,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41825,6 +47325,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41863,6 +47368,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41901,6 +47411,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41939,6 +47454,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -41977,6 +47497,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42015,6 +47540,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42053,6 +47583,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42091,6 +47626,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42129,6 +47669,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42167,6 +47712,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42205,6 +47755,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42243,6 +47798,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42281,6 +47841,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42319,6 +47884,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42357,6 +47927,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42395,6 +47970,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42433,6 +48013,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42471,6 +48056,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42509,6 +48099,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42547,6 +48142,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42585,6 +48185,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42623,6 +48228,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42661,6 +48271,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42699,6 +48314,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42737,6 +48357,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42775,6 +48400,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42813,6 +48443,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42851,6 +48486,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42889,6 +48529,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42927,6 +48572,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -42965,6 +48615,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43003,6 +48658,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43041,6 +48701,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43079,6 +48744,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43117,6 +48787,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43155,6 +48830,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43193,6 +48873,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43231,6 +48916,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43269,6 +48959,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43307,6 +49002,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43345,6 +49045,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43383,6 +49088,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43421,6 +49131,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43459,6 +49174,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43497,6 +49217,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43535,6 +49260,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43573,6 +49303,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43611,6 +49346,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43649,6 +49389,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43687,6 +49432,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43725,6 +49475,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43763,6 +49518,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43801,6 +49561,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43839,6 +49604,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43877,6 +49647,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43915,6 +49690,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43953,6 +49733,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -43991,6 +49776,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44029,6 +49819,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44067,6 +49862,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44105,6 +49905,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44143,6 +49948,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44181,6 +49991,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44219,6 +50034,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44257,6 +50077,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44295,6 +50120,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44333,6 +50163,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44371,6 +50206,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44409,6 +50249,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44447,6 +50292,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44485,6 +50335,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44523,6 +50378,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44561,6 +50421,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44599,6 +50464,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44637,6 +50507,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44675,6 +50550,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44713,6 +50593,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44751,6 +50636,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44789,6 +50679,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44827,6 +50722,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44865,6 +50765,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44903,6 +50808,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44941,6 +50851,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -44979,6 +50894,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45017,6 +50937,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45055,6 +50980,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45093,6 +51023,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45131,6 +51066,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45169,6 +51109,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45207,6 +51152,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45245,6 +51195,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45283,6 +51238,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45321,6 +51281,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45359,6 +51324,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45397,6 +51367,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45435,6 +51410,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45473,6 +51453,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45511,6 +51496,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45549,6 +51539,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45587,6 +51582,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45625,6 +51625,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45663,6 +51668,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45701,6 +51711,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45739,6 +51754,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45777,6 +51797,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45815,6 +51840,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45853,6 +51883,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45891,6 +51926,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45929,6 +51969,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -45967,6 +52012,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46005,6 +52055,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46043,6 +52098,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46081,6 +52141,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46119,6 +52184,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46157,6 +52227,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46195,6 +52270,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46233,6 +52313,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46271,6 +52356,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46309,6 +52399,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46347,6 +52442,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46385,6 +52485,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46423,6 +52528,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46461,6 +52571,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46499,6 +52614,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46537,6 +52657,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46575,6 +52700,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46613,6 +52743,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46651,6 +52786,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46689,6 +52829,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46727,6 +52872,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46765,6 +52915,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46803,6 +52958,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46841,6 +53001,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46879,6 +53044,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46917,6 +53087,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46955,6 +53130,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -46993,6 +53173,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47031,6 +53216,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47069,6 +53259,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47107,6 +53302,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47145,6 +53345,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47183,6 +53388,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47221,6 +53431,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47259,6 +53474,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47297,6 +53517,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47335,6 +53560,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47373,6 +53603,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47411,6 +53646,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47449,6 +53689,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47487,6 +53732,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47525,6 +53775,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47563,6 +53818,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47601,6 +53861,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47639,6 +53904,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47677,6 +53947,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47715,6 +53990,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47753,6 +54033,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47791,6 +54076,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47829,6 +54119,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47867,6 +54162,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47905,6 +54205,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47943,6 +54248,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -47981,6 +54291,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48019,6 +54334,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48057,6 +54377,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48095,6 +54420,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48133,6 +54463,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48171,6 +54506,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48209,6 +54549,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48247,6 +54592,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48285,6 +54635,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48323,6 +54678,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48361,6 +54721,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48399,6 +54764,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48437,6 +54807,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48475,6 +54850,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48513,6 +54893,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48551,6 +54936,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48589,6 +54979,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48627,6 +55022,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48665,6 +55065,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48703,6 +55108,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48741,6 +55151,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48779,6 +55194,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48817,6 +55237,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48855,6 +55280,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48893,6 +55323,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48931,6 +55366,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -48969,6 +55409,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49007,6 +55452,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49045,6 +55495,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49083,6 +55538,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49121,6 +55581,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49159,6 +55624,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49197,6 +55667,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49235,6 +55710,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49273,6 +55753,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49311,6 +55796,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49349,6 +55839,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49387,6 +55882,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49425,6 +55925,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49463,6 +55968,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49501,6 +56011,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49539,6 +56054,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49577,6 +56097,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49615,6 +56140,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49653,6 +56183,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49691,6 +56226,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49729,6 +56269,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49767,6 +56312,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49805,6 +56355,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49843,6 +56398,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49881,6 +56441,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49919,6 +56484,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49957,6 +56527,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -49995,6 +56570,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50033,6 +56613,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50071,6 +56656,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50109,6 +56699,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50147,6 +56742,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50185,6 +56785,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50223,6 +56828,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50261,6 +56871,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50299,6 +56914,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50337,6 +56957,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50375,6 +57000,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50413,6 +57043,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50451,6 +57086,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50489,6 +57129,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50527,6 +57172,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50565,6 +57215,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50603,6 +57258,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50641,6 +57301,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50679,6 +57344,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50717,6 +57387,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50755,6 +57430,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50793,6 +57473,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50831,6 +57516,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50869,6 +57559,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50907,6 +57602,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50945,6 +57645,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -50983,6 +57688,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51021,6 +57731,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51059,6 +57774,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51097,6 +57817,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51135,6 +57860,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51173,6 +57903,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51211,6 +57946,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51249,6 +57989,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51287,6 +58032,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51325,6 +58075,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51363,6 +58118,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51401,6 +58161,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51439,6 +58204,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51477,6 +58247,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51515,6 +58290,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51553,6 +58333,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51591,6 +58376,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51629,6 +58419,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51667,6 +58462,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51705,6 +58505,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51743,6 +58548,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51781,6 +58591,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51819,6 +58634,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51857,6 +58677,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51895,6 +58720,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51933,6 +58763,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -51971,6 +58806,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52009,6 +58849,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52047,6 +58892,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52085,6 +58935,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52123,6 +58978,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52161,6 +59021,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52199,6 +59064,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52237,6 +59107,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52275,6 +59150,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52313,6 +59193,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52351,6 +59236,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52389,6 +59279,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52427,6 +59322,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52465,6 +59365,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52503,6 +59408,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52541,6 +59451,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52579,6 +59494,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52617,6 +59537,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52655,6 +59580,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52693,6 +59623,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52731,6 +59666,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52769,6 +59709,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52807,6 +59752,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52845,6 +59795,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52883,6 +59838,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52921,6 +59881,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52959,6 +59924,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -52997,6 +59967,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53035,6 +60010,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53073,6 +60053,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53111,6 +60096,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53149,6 +60139,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53187,6 +60182,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53225,6 +60225,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53263,6 +60268,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53301,6 +60311,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53339,6 +60354,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53377,6 +60397,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53415,6 +60440,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53453,6 +60483,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53491,6 +60526,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53529,6 +60569,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53567,6 +60612,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53605,6 +60655,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53643,6 +60698,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53681,6 +60741,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53719,6 +60784,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53757,6 +60827,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53795,6 +60870,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53833,6 +60913,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53871,6 +60956,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53909,6 +60999,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53947,6 +61042,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -53985,6 +61085,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54023,6 +61128,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54061,6 +61171,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54099,6 +61214,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54137,6 +61257,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54175,6 +61300,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54213,6 +61343,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54251,6 +61386,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54289,6 +61429,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54327,6 +61472,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54365,6 +61515,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54403,6 +61558,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54441,6 +61601,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54479,6 +61644,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54517,6 +61687,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54555,6 +61730,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54593,6 +61773,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54631,6 +61816,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54669,6 +61859,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54707,6 +61902,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54745,6 +61945,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54783,6 +61988,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54821,6 +62031,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54859,6 +62074,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54897,6 +62117,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54935,6 +62160,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -54973,6 +62203,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55011,6 +62246,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55049,6 +62289,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55087,6 +62332,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55125,6 +62375,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55163,6 +62418,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55201,6 +62461,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55239,6 +62504,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55277,6 +62547,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55315,6 +62590,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55353,6 +62633,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55391,6 +62676,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55429,6 +62719,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55467,6 +62762,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55505,6 +62805,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55543,6 +62848,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55581,6 +62891,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55619,6 +62934,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55657,6 +62977,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55695,6 +63020,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55733,6 +63063,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55771,6 +63106,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55809,6 +63149,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55847,6 +63192,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55885,6 +63235,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55923,6 +63278,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55961,6 +63321,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -55999,6 +63364,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56037,6 +63407,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56075,6 +63450,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56113,6 +63493,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56151,6 +63536,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56189,6 +63579,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56227,6 +63622,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56265,6 +63665,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56303,6 +63708,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56341,6 +63751,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56379,6 +63794,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56417,6 +63837,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56455,6 +63880,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56493,6 +63923,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56531,6 +63966,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56569,6 +64009,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56607,6 +64052,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56645,6 +64095,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56683,6 +64138,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56721,6 +64181,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56759,6 +64224,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56797,6 +64267,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56835,6 +64310,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56873,6 +64353,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56911,6 +64396,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56949,6 +64439,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -56987,6 +64482,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57025,6 +64525,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57063,6 +64568,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57101,6 +64611,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57139,6 +64654,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57177,6 +64697,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57215,6 +64740,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57253,6 +64783,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57291,6 +64826,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57329,6 +64869,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57367,6 +64912,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57405,6 +64955,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57443,6 +64998,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57481,6 +65041,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57519,6 +65084,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57557,6 +65127,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57595,6 +65170,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57633,6 +65213,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57671,6 +65256,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57709,6 +65299,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57747,6 +65342,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57785,6 +65385,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57823,6 +65428,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57861,6 +65471,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57899,6 +65514,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57937,6 +65557,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -57975,6 +65600,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58013,6 +65643,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58051,6 +65686,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58089,6 +65729,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58127,6 +65772,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58165,6 +65815,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58203,6 +65858,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58241,6 +65901,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58279,6 +65944,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58317,6 +65987,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58355,6 +66030,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58393,6 +66073,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58431,6 +66116,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58469,6 +66159,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58507,6 +66202,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58545,6 +66245,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58583,6 +66288,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58621,6 +66331,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58659,6 +66374,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58697,6 +66417,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58735,6 +66460,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58773,6 +66503,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58811,6 +66546,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58849,6 +66589,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58887,6 +66632,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58925,6 +66675,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -58963,6 +66718,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59001,6 +66761,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59039,6 +66804,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59077,6 +66847,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59115,6 +66890,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59153,6 +66933,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59191,6 +66976,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59229,6 +67019,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59267,6 +67062,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59305,6 +67105,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59343,6 +67148,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59381,6 +67191,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59419,6 +67234,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59457,6 +67277,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59495,6 +67320,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59533,6 +67363,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59571,6 +67406,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59609,6 +67449,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59647,6 +67492,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59685,6 +67535,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59723,6 +67578,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59761,6 +67621,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59799,6 +67664,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59837,6 +67707,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59875,6 +67750,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59913,6 +67793,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59951,6 +67836,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -59989,6 +67879,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60027,6 +67922,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60065,6 +67965,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60103,6 +68008,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60141,6 +68051,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60179,6 +68094,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60217,6 +68137,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60255,6 +68180,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60293,6 +68223,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60331,6 +68266,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60369,6 +68309,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60407,6 +68352,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60445,6 +68395,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60483,6 +68438,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60521,6 +68481,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60559,6 +68524,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60597,6 +68567,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60635,6 +68610,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60673,6 +68653,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60711,6 +68696,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60749,6 +68739,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60787,6 +68782,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60825,6 +68825,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60863,6 +68868,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60901,6 +68911,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60939,6 +68954,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -60977,6 +68997,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61015,6 +69040,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61053,6 +69083,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61091,6 +69126,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61129,6 +69169,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61167,6 +69212,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61205,6 +69255,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61243,6 +69298,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61281,6 +69341,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61319,6 +69384,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61357,6 +69427,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61395,6 +69470,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61433,6 +69513,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61471,6 +69556,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61509,6 +69599,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61547,6 +69642,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61585,6 +69685,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61623,6 +69728,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61661,6 +69771,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61699,6 +69814,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61737,6 +69857,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61775,6 +69900,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61813,6 +69943,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61851,6 +69986,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61889,6 +70029,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61927,6 +70072,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -61965,6 +70115,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62003,6 +70158,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62041,6 +70201,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62079,6 +70244,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62117,6 +70287,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62155,6 +70330,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62193,6 +70373,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62231,6 +70416,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62269,6 +70459,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62307,6 +70502,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62345,6 +70545,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62383,6 +70588,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62421,6 +70631,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62459,6 +70674,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62497,6 +70717,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62535,6 +70760,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62573,6 +70803,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62611,6 +70846,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62649,6 +70889,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62687,6 +70932,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62725,6 +70975,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62763,6 +71018,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62801,6 +71061,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62839,6 +71104,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62877,6 +71147,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62915,6 +71190,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62953,6 +71233,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -62991,6 +71276,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63029,6 +71319,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63067,6 +71362,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63105,6 +71405,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63143,6 +71448,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63181,6 +71491,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63219,6 +71534,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63257,6 +71577,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63295,6 +71620,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63333,6 +71663,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63371,6 +71706,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63409,6 +71749,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63447,6 +71792,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63485,6 +71835,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63523,6 +71878,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63561,6 +71921,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63599,6 +71964,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63637,6 +72007,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63675,6 +72050,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63713,6 +72093,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63751,6 +72136,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63789,6 +72179,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63827,6 +72222,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63865,6 +72265,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63903,6 +72308,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63941,6 +72351,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -63979,6 +72394,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64017,6 +72437,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64055,6 +72480,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64093,6 +72523,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64131,6 +72566,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64169,6 +72609,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64207,6 +72652,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64245,6 +72695,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64283,6 +72738,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64321,6 +72781,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64359,6 +72824,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64397,6 +72867,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64435,6 +72910,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64473,6 +72953,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64511,6 +72996,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64549,6 +73039,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64587,6 +73082,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64625,6 +73125,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64663,6 +73168,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64701,6 +73211,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64739,6 +73254,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64777,6 +73297,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64815,6 +73340,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64853,6 +73383,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64891,6 +73426,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64929,6 +73469,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -64967,6 +73512,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65005,6 +73555,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65043,6 +73598,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65081,6 +73641,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65119,6 +73684,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65157,6 +73727,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65195,6 +73770,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65233,6 +73813,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65271,6 +73856,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65309,6 +73899,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65347,6 +73942,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65385,6 +73985,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65423,6 +74028,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65461,6 +74071,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65499,6 +74114,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65537,6 +74157,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65575,6 +74200,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65613,6 +74243,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65651,6 +74286,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65689,6 +74329,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65727,6 +74372,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65765,6 +74415,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65803,6 +74458,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65841,6 +74501,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65879,6 +74544,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65917,6 +74587,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65955,6 +74630,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -65993,6 +74673,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66031,6 +74716,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66069,6 +74759,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66107,6 +74802,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66145,6 +74845,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66183,6 +74888,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66221,6 +74931,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66259,6 +74974,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66297,6 +75017,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66335,6 +75060,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66373,6 +75103,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66411,6 +75146,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66449,6 +75189,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66487,6 +75232,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66525,6 +75275,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66563,6 +75318,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66601,6 +75361,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66639,6 +75404,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66677,6 +75447,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66715,6 +75490,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66753,6 +75533,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66791,6 +75576,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66829,6 +75619,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66867,6 +75662,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66905,6 +75705,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66943,6 +75748,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -66981,6 +75791,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67019,6 +75834,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67057,6 +75877,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67095,6 +75920,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67133,6 +75963,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67171,6 +76006,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67209,6 +76049,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67247,6 +76092,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67285,6 +76135,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67323,6 +76178,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67361,6 +76221,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67399,6 +76264,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67437,6 +76307,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67475,6 +76350,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67513,6 +76393,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67551,6 +76436,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67589,6 +76479,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67627,6 +76522,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67665,6 +76565,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67703,6 +76608,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67741,6 +76651,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67779,6 +76694,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67817,6 +76737,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67855,6 +76780,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67893,6 +76823,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67931,6 +76866,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -67969,6 +76909,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68007,6 +76952,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68045,6 +76995,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68083,6 +77038,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68121,6 +77081,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68159,6 +77124,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68197,6 +77167,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68235,6 +77210,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68273,6 +77253,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68311,6 +77296,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68349,6 +77339,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68387,6 +77382,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68425,6 +77425,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68463,6 +77468,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68501,6 +77511,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68539,6 +77554,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68577,6 +77597,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68615,6 +77640,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68653,6 +77683,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68691,6 +77726,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68729,6 +77769,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68767,6 +77812,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68805,6 +77855,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68843,6 +77898,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68881,6 +77941,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68919,6 +77984,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68957,6 +78027,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -68995,6 +78070,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69033,6 +78113,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69071,6 +78156,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69109,6 +78199,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69147,6 +78242,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69185,6 +78285,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69223,6 +78328,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69261,6 +78371,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69299,6 +78414,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69337,6 +78457,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69375,6 +78500,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69413,6 +78543,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69451,6 +78586,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69489,6 +78629,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69527,6 +78672,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69565,6 +78715,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69603,6 +78758,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69641,6 +78801,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69679,6 +78844,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69717,6 +78887,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69755,6 +78930,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69793,6 +78973,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69831,6 +79016,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69869,6 +79059,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69907,6 +79102,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69945,6 +79145,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -69983,6 +79188,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70021,6 +79231,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70059,6 +79274,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70097,6 +79317,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70135,6 +79360,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70173,6 +79403,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70211,6 +79446,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70249,6 +79489,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70287,6 +79532,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70325,6 +79575,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70363,6 +79618,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70401,6 +79661,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70439,6 +79704,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70477,6 +79747,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70515,6 +79790,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70553,6 +79833,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70591,6 +79876,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70629,6 +79919,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70667,6 +79962,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70705,6 +80005,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70743,6 +80048,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70781,6 +80091,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70819,6 +80134,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70857,6 +80177,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70895,6 +80220,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70933,6 +80263,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -70971,6 +80306,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71009,6 +80349,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71047,6 +80392,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71085,6 +80435,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71123,6 +80478,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71161,6 +80521,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71199,6 +80564,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71237,6 +80607,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71275,6 +80650,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71313,6 +80693,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71351,6 +80736,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71389,6 +80779,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71427,6 +80822,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71465,6 +80865,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71503,6 +80908,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71541,6 +80951,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71579,6 +80994,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71617,6 +81037,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71655,6 +81080,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71693,6 +81123,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71731,6 +81166,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71769,6 +81209,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71807,6 +81252,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71845,6 +81295,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71883,6 +81338,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71921,6 +81381,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71959,6 +81424,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -71997,6 +81467,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72035,6 +81510,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72073,6 +81553,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72111,6 +81596,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72149,6 +81639,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72187,6 +81682,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72225,6 +81725,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72263,6 +81768,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72301,6 +81811,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72339,6 +81854,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72377,6 +81897,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72415,6 +81940,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72453,6 +81983,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72491,6 +82026,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72529,6 +82069,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72567,6 +82112,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72605,6 +82155,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72643,6 +82198,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72681,6 +82241,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72719,6 +82284,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72757,6 +82327,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72795,6 +82370,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72833,6 +82413,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72871,6 +82456,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72909,6 +82499,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72947,6 +82542,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -72985,6 +82585,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73023,6 +82628,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73061,6 +82671,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73099,6 +82714,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73137,6 +82757,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73175,6 +82800,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73213,6 +82843,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73251,6 +82886,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73289,6 +82929,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73327,6 +82972,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73365,6 +83015,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73403,6 +83058,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73441,6 +83101,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73479,6 +83144,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73517,6 +83187,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73555,6 +83230,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73593,6 +83273,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73631,6 +83316,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73669,6 +83359,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73707,6 +83402,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73745,6 +83445,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73783,6 +83488,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73821,6 +83531,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73859,6 +83574,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73897,6 +83617,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73935,6 +83660,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -73973,6 +83703,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74011,6 +83746,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74049,6 +83789,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74087,6 +83832,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74125,6 +83875,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74163,6 +83918,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74201,6 +83961,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74239,6 +84004,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74277,6 +84047,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74315,6 +84090,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74353,6 +84133,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74391,6 +84176,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74429,6 +84219,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74467,6 +84262,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74505,6 +84305,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74543,6 +84348,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74581,6 +84391,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74619,6 +84434,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74657,6 +84477,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74695,6 +84520,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74733,6 +84563,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74771,6 +84606,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74809,6 +84649,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74847,6 +84692,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74885,6 +84735,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74923,6 +84778,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74961,6 +84821,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -74999,6 +84864,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75037,6 +84907,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75075,6 +84950,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75113,6 +84993,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75151,6 +85036,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75189,6 +85079,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75227,6 +85122,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75265,6 +85165,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75303,6 +85208,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75341,6 +85251,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75379,6 +85294,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75417,6 +85337,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75455,6 +85380,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75493,6 +85423,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75531,6 +85466,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75569,6 +85509,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75607,6 +85552,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75645,6 +85595,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75683,6 +85638,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75721,6 +85681,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75759,6 +85724,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75797,6 +85767,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75835,6 +85810,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75873,6 +85853,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75911,6 +85896,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75949,6 +85939,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -75987,6 +85982,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76025,6 +86025,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76063,6 +86068,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76101,6 +86111,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76139,6 +86154,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76177,6 +86197,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76215,6 +86240,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76253,6 +86283,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76291,6 +86326,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76329,6 +86369,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76367,6 +86412,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76405,6 +86455,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76443,6 +86498,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76481,6 +86541,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76519,6 +86584,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76557,6 +86627,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76595,6 +86670,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76633,6 +86713,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76671,6 +86756,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76709,6 +86799,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76747,6 +86842,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76785,6 +86885,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76823,6 +86928,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76861,6 +86971,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76899,6 +87014,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76937,6 +87057,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -76975,6 +87100,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77013,6 +87143,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77051,6 +87186,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77089,6 +87229,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77127,6 +87272,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77165,6 +87315,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77203,6 +87358,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77241,6 +87401,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77279,6 +87444,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77317,6 +87487,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77355,6 +87530,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77393,6 +87573,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77431,6 +87616,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77469,6 +87659,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77507,6 +87702,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77545,6 +87745,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77583,6 +87788,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77621,6 +87831,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77659,6 +87874,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77697,6 +87917,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77735,6 +87960,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77773,6 +88003,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77811,6 +88046,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77849,6 +88089,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77887,6 +88132,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77925,6 +88175,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -77963,6 +88218,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78001,6 +88261,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78039,6 +88304,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78077,6 +88347,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78115,6 +88390,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78153,6 +88433,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78191,6 +88476,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78229,6 +88519,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78267,6 +88562,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78305,6 +88605,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78343,6 +88648,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78381,6 +88691,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78419,6 +88734,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78457,6 +88777,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78495,6 +88820,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78533,6 +88863,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78571,6 +88906,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78609,6 +88949,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78647,6 +88992,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78685,6 +89035,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78723,6 +89078,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78761,6 +89121,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78799,6 +89164,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78837,6 +89207,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78875,6 +89250,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78913,6 +89293,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78951,6 +89336,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -78989,6 +89379,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79027,6 +89422,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79065,6 +89465,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79103,6 +89508,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79141,6 +89551,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79179,6 +89594,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79217,6 +89637,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79255,6 +89680,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79293,6 +89723,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79331,6 +89766,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79369,6 +89809,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79407,6 +89852,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79445,6 +89895,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79483,6 +89938,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79521,6 +89981,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79559,6 +90024,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79597,6 +90067,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79635,6 +90110,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79673,6 +90153,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79711,6 +90196,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79749,6 +90239,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79787,6 +90282,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79825,6 +90325,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79863,6 +90368,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79901,6 +90411,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79939,6 +90454,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -79977,6 +90497,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80015,6 +90540,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80053,6 +90583,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80091,6 +90626,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80129,6 +90669,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80167,6 +90712,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80205,6 +90755,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80243,6 +90798,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80281,6 +90841,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80319,6 +90884,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80357,6 +90927,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80395,6 +90970,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80433,6 +91013,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80471,6 +91056,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80509,6 +91099,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80547,6 +91142,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80585,6 +91185,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80623,6 +91228,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80661,6 +91271,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80699,6 +91314,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80737,6 +91357,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80775,6 +91400,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80813,6 +91443,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80851,6 +91486,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80889,6 +91529,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80927,6 +91572,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -80965,6 +91615,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81003,6 +91658,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81041,6 +91701,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81079,6 +91744,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81117,6 +91787,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81155,6 +91830,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81193,6 +91873,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81231,6 +91916,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81269,6 +91959,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81307,6 +92002,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81345,6 +92045,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81383,6 +92088,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81421,6 +92131,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81459,6 +92174,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81497,6 +92217,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81535,6 +92260,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81573,6 +92303,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81611,6 +92346,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81649,6 +92389,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81687,6 +92432,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81725,6 +92475,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81763,6 +92518,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81801,6 +92561,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81839,6 +92604,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81877,6 +92647,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81915,6 +92690,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81953,6 +92733,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -81991,6 +92776,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82029,6 +92819,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82067,6 +92862,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82105,6 +92905,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82143,6 +92948,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82181,6 +92991,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82219,6 +93034,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82257,6 +93077,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82295,6 +93120,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82333,6 +93163,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82371,6 +93206,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82409,6 +93249,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82447,6 +93292,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82485,6 +93335,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82523,6 +93378,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82561,6 +93421,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82599,6 +93464,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82637,6 +93507,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82675,6 +93550,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82713,6 +93593,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82751,6 +93636,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82789,6 +93679,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82827,6 +93722,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82865,6 +93765,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82903,6 +93808,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82941,6 +93851,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -82979,6 +93894,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83017,6 +93937,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83055,6 +93980,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83093,6 +94023,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83131,6 +94066,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83169,6 +94109,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83207,6 +94152,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83245,6 +94195,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83283,6 +94238,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83321,6 +94281,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83359,6 +94324,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83397,6 +94367,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83435,6 +94410,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83473,6 +94453,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83511,6 +94496,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83549,6 +94539,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83587,6 +94582,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83625,6 +94625,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83663,6 +94668,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83701,6 +94711,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83739,6 +94754,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83777,6 +94797,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83815,6 +94840,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83853,6 +94883,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83891,6 +94926,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83929,6 +94969,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -83967,6 +95012,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84005,6 +95055,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84043,6 +95098,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84081,6 +95141,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84119,6 +95184,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84157,6 +95227,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84195,6 +95270,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84233,6 +95313,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84271,6 +95356,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84309,6 +95399,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84347,6 +95442,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84385,6 +95485,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84423,6 +95528,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84461,6 +95571,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84499,6 +95614,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84537,6 +95657,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84575,6 +95700,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84613,6 +95743,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84651,6 +95786,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84689,6 +95829,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84727,6 +95872,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84765,6 +95915,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84803,6 +95958,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84841,6 +96001,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84879,6 +96044,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84917,6 +96087,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84955,6 +96130,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -84993,6 +96173,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85031,6 +96216,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85069,6 +96259,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85107,6 +96302,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85145,6 +96345,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85183,6 +96388,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85221,6 +96431,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85259,6 +96474,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85297,6 +96517,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85335,6 +96560,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85373,6 +96603,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85411,6 +96646,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85449,6 +96689,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85487,6 +96732,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85525,6 +96775,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85563,6 +96818,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85601,6 +96861,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85639,6 +96904,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85677,6 +96947,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85715,6 +96990,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85753,6 +97033,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85791,6 +97076,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85829,6 +97119,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85867,6 +97162,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85905,6 +97205,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85943,6 +97248,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -85981,6 +97291,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86019,6 +97334,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86057,6 +97377,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86095,6 +97420,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86133,6 +97463,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86171,6 +97506,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86209,6 +97549,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86247,6 +97592,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86285,6 +97635,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86323,6 +97678,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86361,6 +97721,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86399,6 +97764,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86437,6 +97807,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86475,6 +97850,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86513,6 +97893,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86551,6 +97936,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86589,6 +97979,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86627,6 +98022,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86665,6 +98065,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86703,6 +98108,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86741,6 +98151,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86779,6 +98194,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86817,6 +98237,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86855,6 +98280,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86893,6 +98323,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86931,6 +98366,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -86969,6 +98409,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87007,6 +98452,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87045,6 +98495,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87083,6 +98538,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87121,6 +98581,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87159,6 +98624,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87197,6 +98667,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87235,6 +98710,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87273,6 +98753,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87311,6 +98796,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87349,6 +98839,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87387,6 +98882,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87425,6 +98925,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87463,6 +98968,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87501,6 +99011,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87539,6 +99054,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87577,6 +99097,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87615,6 +99140,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87653,6 +99183,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87691,6 +99226,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87729,6 +99269,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87767,6 +99312,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87805,6 +99355,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87843,6 +99398,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87881,6 +99441,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87919,6 +99484,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87957,6 +99527,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -87995,6 +99570,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88033,6 +99613,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88071,6 +99656,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88109,6 +99699,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88147,6 +99742,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88185,6 +99785,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88223,6 +99828,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88261,6 +99871,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88299,6 +99914,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88337,6 +99957,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88375,6 +100000,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88413,6 +100043,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88451,6 +100086,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88489,6 +100129,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88527,6 +100172,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88565,6 +100215,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88603,6 +100258,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88641,6 +100301,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88679,6 +100344,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88717,6 +100387,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88755,6 +100430,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88793,6 +100473,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88831,6 +100516,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88869,6 +100559,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88907,6 +100602,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88945,6 +100645,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -88983,6 +100688,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89021,6 +100731,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89059,6 +100774,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89097,6 +100817,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89135,6 +100860,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89173,6 +100903,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89211,6 +100946,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89249,6 +100989,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89287,6 +101032,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89325,6 +101075,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89363,6 +101118,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89401,6 +101161,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89439,6 +101204,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89477,6 +101247,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89515,6 +101290,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89553,6 +101333,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89591,6 +101376,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89629,6 +101419,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89667,6 +101462,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89705,6 +101505,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89743,6 +101548,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89781,6 +101591,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89819,6 +101634,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89857,6 +101677,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89895,6 +101720,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89933,6 +101763,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -89971,6 +101806,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90009,6 +101849,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90047,6 +101892,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90085,6 +101935,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90123,6 +101978,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90161,6 +102021,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90199,6 +102064,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90237,6 +102107,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90275,6 +102150,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90313,6 +102193,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90351,6 +102236,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90389,6 +102279,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90427,6 +102322,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90465,6 +102365,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90503,6 +102408,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90541,6 +102451,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90579,6 +102494,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90617,6 +102537,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90655,6 +102580,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90693,6 +102623,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90731,6 +102666,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90769,6 +102709,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90807,6 +102752,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90845,6 +102795,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90883,6 +102838,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90921,6 +102881,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90959,6 +102924,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -90997,6 +102967,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91035,6 +103010,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91073,6 +103053,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91111,6 +103096,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91149,6 +103139,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91187,6 +103182,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91225,6 +103225,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91263,6 +103268,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91301,6 +103311,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91339,6 +103354,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91377,6 +103397,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91415,6 +103440,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91453,6 +103483,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91491,6 +103526,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91529,6 +103569,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91567,6 +103612,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91605,6 +103655,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91643,6 +103698,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91681,6 +103741,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91719,6 +103784,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91757,6 +103827,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91795,6 +103870,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91833,6 +103913,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91871,6 +103956,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91909,6 +103999,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91947,6 +104042,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -91985,6 +104085,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92023,6 +104128,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92061,6 +104171,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92099,6 +104214,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92137,6 +104257,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92175,6 +104300,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92213,6 +104343,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92251,6 +104386,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92289,6 +104429,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92327,6 +104472,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92365,6 +104515,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92403,6 +104558,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92441,6 +104601,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92479,6 +104644,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92517,6 +104687,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92555,6 +104730,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92593,6 +104773,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92631,6 +104816,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92669,6 +104859,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92707,6 +104902,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92745,6 +104945,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92783,6 +104988,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92821,6 +105031,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92859,6 +105074,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92897,6 +105117,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92935,6 +105160,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -92973,6 +105203,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93011,6 +105246,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93049,6 +105289,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93087,6 +105332,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93125,6 +105375,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93163,6 +105418,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93201,6 +105461,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93239,6 +105504,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93277,6 +105547,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93315,6 +105590,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93353,6 +105633,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93391,6 +105676,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93429,6 +105719,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93467,6 +105762,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93505,6 +105805,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93543,6 +105848,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93581,6 +105891,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93619,6 +105934,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93657,6 +105977,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93695,6 +106020,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93733,6 +106063,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93771,6 +106106,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93809,6 +106149,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93847,6 +106192,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93885,6 +106235,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93923,6 +106278,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93961,6 +106321,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -93999,6 +106364,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94037,6 +106407,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94075,6 +106450,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94113,6 +106493,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94151,6 +106536,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94189,6 +106579,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94227,6 +106622,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94265,6 +106665,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94303,6 +106708,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94341,6 +106751,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94379,6 +106794,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94417,6 +106837,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94455,6 +106880,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94493,6 +106923,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94531,6 +106966,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94569,6 +107009,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94607,6 +107052,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94645,6 +107095,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94683,6 +107138,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94721,6 +107181,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94759,6 +107224,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94797,6 +107267,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94835,6 +107310,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94873,6 +107353,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94911,6 +107396,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94949,6 +107439,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -94987,6 +107482,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95025,6 +107525,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95063,6 +107568,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95101,6 +107611,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95139,6 +107654,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95177,6 +107697,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95215,6 +107740,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95253,6 +107783,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95291,6 +107826,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95329,6 +107869,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95367,6 +107912,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95405,6 +107955,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95443,6 +107998,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95481,6 +108041,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95519,6 +108084,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95557,6 +108127,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95595,6 +108170,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95633,6 +108213,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95671,6 +108256,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95709,6 +108299,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95747,6 +108342,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95785,6 +108385,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95823,6 +108428,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95861,6 +108471,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95899,6 +108514,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95937,6 +108557,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -95975,6 +108600,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96013,6 +108643,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96051,6 +108686,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96089,6 +108729,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96127,6 +108772,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96165,6 +108815,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96203,6 +108858,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96241,6 +108901,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96279,6 +108944,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96317,6 +108987,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96355,6 +109030,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96393,6 +109073,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96431,6 +109116,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96469,6 +109159,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96507,6 +109202,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96545,6 +109245,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96583,6 +109288,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96621,6 +109331,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96659,6 +109374,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96697,6 +109417,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96735,6 +109460,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96773,6 +109503,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96811,6 +109546,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96849,6 +109589,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96887,6 +109632,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96925,6 +109675,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -96963,6 +109718,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97001,6 +109761,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97039,6 +109804,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97077,6 +109847,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97115,6 +109890,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97153,6 +109933,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97191,6 +109976,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97229,6 +110019,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97267,6 +110062,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97305,6 +110105,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97343,6 +110148,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97381,6 +110191,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97419,6 +110234,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97457,6 +110277,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97495,6 +110320,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97533,6 +110363,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97571,6 +110406,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97609,6 +110449,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97647,6 +110492,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97685,6 +110535,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97723,6 +110578,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97761,6 +110621,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97799,6 +110664,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97837,6 +110707,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97875,6 +110750,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97913,6 +110793,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97951,6 +110836,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -97989,6 +110879,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98027,6 +110922,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98065,6 +110965,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98103,6 +111008,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98141,6 +111051,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98179,6 +111094,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98217,6 +111137,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98255,6 +111180,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98293,6 +111223,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98331,6 +111266,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98369,6 +111309,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98407,6 +111352,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98445,6 +111395,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98483,6 +111438,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98521,6 +111481,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98559,6 +111524,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98597,6 +111567,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98635,6 +111610,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98673,6 +111653,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98711,6 +111696,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98749,6 +111739,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98787,6 +111782,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98825,6 +111825,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98863,6 +111868,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98901,6 +111911,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98939,6 +111954,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -98977,6 +111997,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99015,6 +112040,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99053,6 +112083,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99091,6 +112126,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99129,6 +112169,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99167,6 +112212,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99205,6 +112255,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99243,6 +112298,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99281,6 +112341,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99319,6 +112384,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99357,6 +112427,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99395,6 +112470,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99433,6 +112513,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99471,6 +112556,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99509,6 +112599,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99547,6 +112642,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99585,6 +112685,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99623,6 +112728,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99661,6 +112771,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99699,6 +112814,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99737,6 +112857,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99775,6 +112900,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99813,6 +112943,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99851,6 +112986,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99889,6 +113029,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99927,6 +113072,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -99965,6 +113115,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100003,6 +113158,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100041,6 +113201,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100079,6 +113244,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100117,6 +113287,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100155,6 +113330,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100193,6 +113373,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100231,6 +113416,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100269,6 +113459,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100307,6 +113502,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100345,6 +113545,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100383,6 +113588,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100421,6 +113631,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100459,6 +113674,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100497,6 +113717,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100535,6 +113760,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100573,6 +113803,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100611,6 +113846,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100649,6 +113889,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100687,6 +113932,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100725,6 +113975,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100763,6 +114018,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100801,6 +114061,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100839,6 +114104,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100877,6 +114147,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100915,6 +114190,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100953,6 +114233,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -100991,6 +114276,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101029,6 +114319,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101067,6 +114362,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101105,6 +114405,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101143,6 +114448,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101181,6 +114491,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101219,6 +114534,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101257,6 +114577,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101295,6 +114620,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101333,6 +114663,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101371,6 +114706,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101409,6 +114749,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101447,6 +114792,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101485,6 +114835,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101523,6 +114878,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101561,6 +114921,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101599,6 +114964,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101637,6 +115007,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101675,6 +115050,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101713,6 +115093,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101751,6 +115136,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101789,6 +115179,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101827,6 +115222,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101865,6 +115265,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101903,6 +115308,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101941,6 +115351,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -101979,6 +115394,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102017,6 +115437,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102055,6 +115480,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102093,6 +115523,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102131,6 +115566,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102169,6 +115609,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102207,6 +115652,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102245,6 +115695,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102283,6 +115738,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102321,6 +115781,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102359,6 +115824,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102397,6 +115867,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102435,6 +115910,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102473,6 +115953,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102511,6 +115996,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102549,6 +116039,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102587,6 +116082,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102625,6 +116125,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102663,6 +116168,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102701,6 +116211,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102739,6 +116254,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102777,6 +116297,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102815,6 +116340,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102853,6 +116383,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102891,6 +116426,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102929,6 +116469,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -102967,6 +116512,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103005,6 +116555,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103043,6 +116598,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103081,6 +116641,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103119,6 +116684,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103157,6 +116727,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103195,6 +116770,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103233,6 +116813,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103271,6 +116856,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103309,6 +116899,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103347,6 +116942,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103385,6 +116985,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103423,6 +117028,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103461,6 +117071,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103499,6 +117114,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103537,6 +117157,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103575,6 +117200,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103613,6 +117243,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103651,6 +117286,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103689,6 +117329,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103727,6 +117372,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103765,6 +117415,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103803,6 +117458,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103841,6 +117501,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103879,6 +117544,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103917,6 +117587,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103955,6 +117630,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -103993,6 +117673,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104031,6 +117716,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104069,6 +117759,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104107,6 +117802,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104145,6 +117845,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104183,6 +117888,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104221,6 +117931,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104259,6 +117974,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104297,6 +118017,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104335,6 +118060,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104373,6 +118103,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104411,6 +118146,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104449,6 +118189,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104487,6 +118232,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104525,6 +118275,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104563,6 +118318,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104601,6 +118361,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104639,6 +118404,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104677,6 +118447,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104715,6 +118490,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104753,6 +118533,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104791,6 +118576,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104829,6 +118619,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104867,6 +118662,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104905,6 +118705,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104943,6 +118748,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -104981,6 +118791,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105019,6 +118834,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105057,6 +118877,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105095,6 +118920,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105133,6 +118963,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105171,6 +119006,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105209,6 +119049,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105247,6 +119092,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105285,6 +119135,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105323,6 +119178,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105361,6 +119221,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105399,6 +119264,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105437,6 +119307,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105475,6 +119350,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105513,6 +119393,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105551,6 +119436,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105589,6 +119479,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105627,6 +119522,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105665,6 +119565,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105703,6 +119608,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105741,6 +119651,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105779,6 +119694,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105817,6 +119737,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105855,6 +119780,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105893,6 +119823,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105931,6 +119866,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -105969,6 +119909,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106007,6 +119952,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106045,6 +119995,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106083,6 +120038,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106121,6 +120081,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106159,6 +120124,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106197,6 +120167,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106235,6 +120210,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106273,6 +120253,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106311,6 +120296,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106349,6 +120339,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106387,6 +120382,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106425,6 +120425,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106463,6 +120468,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106501,6 +120511,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106539,6 +120554,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106577,6 +120597,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106615,6 +120640,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106653,6 +120683,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106691,6 +120726,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106729,6 +120769,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106767,6 +120812,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106805,6 +120855,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106843,6 +120898,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106881,6 +120941,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106919,6 +120984,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106957,6 +121027,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -106995,6 +121070,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107033,6 +121113,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107071,6 +121156,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107109,6 +121199,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107147,6 +121242,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107185,6 +121285,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107223,6 +121328,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107261,6 +121371,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107299,6 +121414,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107337,6 +121457,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107375,6 +121500,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107413,6 +121543,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107451,6 +121586,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107489,6 +121629,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107527,6 +121672,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107565,6 +121715,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107603,6 +121758,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107641,6 +121801,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107679,6 +121844,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107717,6 +121887,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107755,6 +121930,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107793,6 +121973,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107831,6 +122016,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107869,6 +122059,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107907,6 +122102,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107945,6 +122145,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -107983,6 +122188,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108021,6 +122231,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108059,6 +122274,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108097,6 +122317,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108135,6 +122360,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108173,6 +122403,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108211,6 +122446,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108249,6 +122489,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108287,6 +122532,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108325,6 +122575,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108363,6 +122618,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108401,6 +122661,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108439,6 +122704,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108477,6 +122747,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108515,6 +122790,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108553,6 +122833,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108591,6 +122876,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108629,6 +122919,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108667,6 +122962,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108705,6 +123005,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108743,6 +123048,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108781,6 +123091,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108819,6 +123134,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108857,6 +123177,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108895,6 +123220,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108933,6 +123263,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -108971,6 +123306,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109009,6 +123349,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109047,6 +123392,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109085,6 +123435,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109123,6 +123478,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109161,6 +123521,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109199,6 +123564,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109237,6 +123607,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109275,6 +123650,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109313,6 +123693,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109351,6 +123736,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109389,6 +123779,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109427,6 +123822,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109465,6 +123865,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109503,6 +123908,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109541,6 +123951,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109579,6 +123994,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109617,6 +124037,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109655,6 +124080,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109693,6 +124123,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109731,6 +124166,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109769,6 +124209,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109807,6 +124252,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109845,6 +124295,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109883,6 +124338,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109921,6 +124381,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109959,6 +124424,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -109997,6 +124467,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110035,6 +124510,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110073,6 +124553,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110111,6 +124596,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110149,6 +124639,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110187,6 +124682,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110225,6 +124725,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110263,6 +124768,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110301,6 +124811,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110339,6 +124854,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110377,6 +124897,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110415,6 +124940,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110453,6 +124983,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110491,6 +125026,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110529,6 +125069,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110567,6 +125112,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110605,6 +125155,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110643,6 +125198,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110681,6 +125241,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110719,6 +125284,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110757,6 +125327,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110795,6 +125370,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110833,6 +125413,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110871,6 +125456,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110909,6 +125499,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110947,6 +125542,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -110985,6 +125585,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111023,6 +125628,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111061,6 +125671,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111099,6 +125714,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111137,6 +125757,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111175,6 +125800,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111213,6 +125843,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111251,6 +125886,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111289,6 +125929,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111327,6 +125972,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111365,6 +126015,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111403,6 +126058,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111441,6 +126101,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111479,6 +126144,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111517,6 +126187,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111555,6 +126230,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111593,6 +126273,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111631,6 +126316,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111669,6 +126359,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111707,6 +126402,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111745,6 +126445,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111783,6 +126488,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111821,6 +126531,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111859,6 +126574,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111897,6 +126617,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111935,6 +126660,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -111973,6 +126703,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112011,6 +126746,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112049,6 +126789,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112087,6 +126832,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112125,6 +126875,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112163,6 +126918,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif @@ -112201,6 +126961,11 @@ " so outside definition will be used inside vendorized header"\ " on subsequent includes of the vendorized header"\ " --- if causes problems, try changing header include order"\ + " or #include "\ + " uit_emp/vendorization/consolidate_context_switches.hpp"\ + " at the top of your translation unit;"\ + " alternatively, define UIT_SUPPRESS_MACRO_INSEEP_WARNINGS "\ + " to silence this warning"\ ) #endif #endif diff --git a/include/uit_emp/vendorization/push_uit_emp.hh b/include/uit_emp/vendorization/push_uit_emp.hh index ee6f120bd..9f871ae0a 100644 --- a/include/uit_emp/vendorization/push_uit_emp.hh +++ b/include/uit_emp/vendorization/push_uit_emp.hh @@ -4,6 +4,7 @@ #pragma push_macro("EMP_NAMESPACE") #undef EMP_NAMESPACE #define EMP_NAMESPACE() emp +#define EMP_NAMESPACE_OBJLIKE emp #include "push_headerguards.hh" #include "push_macros.hh"