This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <algorithm> | |
| #include <functional> | |
| #include <string> | |
| #include <string_view> | |
| #include <benchmark/benchmark.h> | |
| #include "file.hpp" | |
| #define NOMINMAX | |
| #define WIN32_LEAN_AND_MEAN | |
| #include <windows.h> |
This file contains hidden or 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 <vcruntime.h> | |
| __std_win32_error __std_fs_equivalent(bool * _Result, const wchar_t *_Path1, const wchar_t *_Path2) noexcept | |
| { // test for equivalent file names | |
| const __vcp_unique_handle _Handle1(_FilesysOpenFile(_Path1, FILE_READ_ATTRIBUTES, | |
| FILE_FLAG_BACKUP_SEMANTICS)); | |
| if (!_Handle1.is_valid()) | |
| { | |
| *_Result = false; | |
| return (GetLastError()); |
This file contains hidden or 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
| ; Function compile flags: /Ogtpy | |
| ; COMDAT ?swap@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXAAV12@@Z | |
| _TEXT SEGMENT | |
| __Right$ = 8 ; size = 4 | |
| ?swap@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXAAV12@@Z PROC ; std::basic_string<char,std::char_traits<char>,std::allocator<char> >::swap, COMDAT | |
| ; _this$ = ecx | |
| ; File c:\program files (x86)\microsoft visual studio 14.0\vc\include\xstring | |
| ; Line 1857 | |
| 00000 56 push esi | |
| 00001 57 push edi |
This file contains hidden or 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 <stddef.h> | |
| #include <string_view> | |
| #include <pmretvals.h> | |
| #include <test_death.hpp> | |
| using namespace std; | |
| int test_case_operator_dereference_value_initalized_iterator() { | |
| string_view::iterator it; // note: for IDL to work correctly, default init and value init are equivalent |
NewerOlder