This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_TEXT SEGMENT | |
__Obj$ = 8 ; size = 4 | |
_<_Args_0>$ = 12 ; size = 4 | |
??$_Dispatch@V<lambda_b66b2f829216cb0e046dcbcc291e4414>@@ABV?$variant@HMV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@$00@?$_Variant_dispatcher@U?$integer_sequence@I$0A@@std@@@std@@SAX$$QAV<lambda_b66b2f829216cb0e046dcbcc291e4414>@@ABV?$variant@HMV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z PROC ; std::_Variant_dispatcher<std::integer_sequence<unsigned int,0> >::_Dispatch<<lambda_b66b2f829216cb0e046dcbcc291e4414>,std::variant<int,float,std::basic_string<char,std::char_traits<char>,std::allocator<char> > > const &,1>, COMDAT | |
jmp ?_Throw_bad_variant_access@std@@YAXXZ ; std::_Throw_bad_variant_access | |
??$_Dispatch@V<lambda_b66b2f829216cb0e046dcbcc291e4414>@@ABV?$variant@HMV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@$00@?$_Variant_dispatcher@U?$integer_sequence@I$0A@@std@@@std@@SAX$$QAV<lambda_b66b2f829216cb0e046dcbcc291e4414>@@ABV?$variant@HMV?$basic_string@DU?$char_traits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <utility> | |
#include <experimental/coroutine> | |
#include <range/v3/view_facade.hpp> | |
#include <range/v3/view/all.hpp> | |
namespace ranges | |
{ | |
inline namespace v3 | |
{ | |
struct generator : view_facade<generator> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <exception> | |
#include <utility> | |
#include <experimental/coroutine> | |
#include <meta/meta.hpp> | |
#include <range/v3/range_fwd.hpp> | |
#include <range/v3/range_traits.hpp> | |
#include <range/v3/view_facade.hpp> | |
#include <range/v3/detail/variant.hpp> | |
#include <range/v3/utility/concepts.hpp> | |
#include <range/v3/utility/swap.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cassert> | |
#include <iterator> | |
#include <numeric> | |
#include <utility> | |
#ifndef NDEBUG | |
#include <cassert> | |
#define EXPECT(...) assert(__VA_ARGS__) | |
#else | |
#ifdef __clang__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\ClangC2\14.10.25903\bin\HostX64\clang.exe" -c -fdiagnostics-format=msvc -target "amd64-pc-windows-msvc" -I "C:\Users\Cacarter\Source\Repos\range-v3\include" -I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\ClangC2\14.10.25903\include" -I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.24930\include" -I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.24930\atlmfc\include" -I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\VS\include" -I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\ucrt" -I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\VS\UnitTest\include" -I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\um" -I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\shared" -I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\winrt" -I "C:\Pro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include/range/v3/iterator_range.hpp-98- public: | |
include/range/v3/iterator_range.hpp-99- using iterator = I; | |
include/range/v3/iterator_range.hpp-100- using sentinel = S; | |
include/range/v3/iterator_range.hpp-101- #ifndef RANGES_DOXYGEN_INVOKED | |
include/range/v3/iterator_range.hpp-102- using const_iterator = I; // Mostly to avoid spurious errors in Boost.Range | |
include/range/v3/iterator_range.hpp-103- #endif | |
include/range/v3/iterator_range.hpp-104- | |
include/range/v3/iterator_range.hpp-105- sized_iterator_range() = default; | |
include/range/v3/iterator_range.hpp-106- RANGES_NDEBUG_CONSTEXPR sized_iterator_range(I begin, S end, iterator_size_t<I> size) | |
include/range/v3/iterator_range.hpp-107- : rng_{detail::move(begin), detail::move(end)}, size_(size) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <experimental/ranges/concepts> | |
#include <experimental/ranges/functional> | |
#include <experimental/ranges/iterator> | |
namespace ranges = std::experimental::ranges; | |
ranges::Integral{I} | |
class integer_range { | |
I lo_ = 0; | |
I hi_ = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <experimental/ranges/concepts> | |
#include <experimental/ranges/iterator> | |
#include <istream> | |
#include <stl2/detail/raw_ptr.hpp> | |
namespace ranges = std::experimental::ranges; | |
namespace detail { | |
template <ranges::Semiregular T, class charT, class traits> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <experimental/ranges/algorithm> | |
#include <cassert> | |
using namespace std::experimental::ranges; | |
struct S { | |
int limit; | |
#if FOO | |
friend bool operator==(const S& a, const S& b) { return true; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: gcc/cp/parser.c | |
=================================================================== | |
--- gcc/cp/parser.c (revision 230588) | |
+++ gcc/cp/parser.c (working copy) | |
@@ -10963,7 +10963,7 @@ | |
LOOKUP_ONLYCONVERTING); | |
end = build_decl (input_location, VAR_DECL, | |
- get_identifier ("__for_end"), iter_type); | |
+ get_identifier ("__for_end"), cv_unqualified (TREE_TYPE (end_expr))); // CMCHACK: iter_type); |
NewerOlder