@@ -464,7 +464,7 @@ namespace experimental {
464
464
void load_symbols_for_file (const std::string& filename) {
465
465
HMODULE hModule = GetModuleHandleA (filename.c_str ());
466
466
if (hModule == NULL ) {
467
- throw internal ::internal_error (
467
+ throw detail ::internal_error (
468
468
" Unable to get module handle for file '{}' : {}" ,
469
469
filename,
470
470
std::system_error (GetLastError (), std::system_category ()).what ()
@@ -481,15 +481,15 @@ namespace experimental {
481
481
sizeof (module_info)
482
482
)
483
483
) {
484
- throw internal ::internal_error (
484
+ throw detail ::internal_error (
485
485
" Unable to get module information for file '{}' : {}" ,
486
486
filename,
487
487
std::system_error (GetLastError (), std::system_category ()).what ()
488
488
);
489
489
}
490
490
491
- auto lock = internal ::get_dbghelp_lock ();
492
- HANDLE syminit_handle = internal ::ensure_syminit ().get_process_handle ();
491
+ auto lock = detail ::get_dbghelp_lock ();
492
+ HANDLE syminit_handle = detail ::ensure_syminit ().get_process_handle ();
493
493
if (
494
494
!SymLoadModuleEx (
495
495
syminit_handle,
@@ -503,7 +503,7 @@ namespace experimental {
503
503
0
504
504
)
505
505
) {
506
- throw internal ::internal_error (
506
+ throw detail ::internal_error (
507
507
" Unable to load symbols for file '{}' : {}" ,
508
508
filename,
509
509
std::system_error (GetLastError (), std::system_category ()).what ()
0 commit comments