diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 02:00:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 02:05:40 +0300 |
commit | bfdf5415b5e025d795a1a7ee89946b00708f50b2 (patch) | |
tree | 7838c1f07dd704ef7bef288420e4e0f2f5dbe4b1 /test/unit_tests/process.cpp | |
parent | Handle: is_invalid -> is_valid (diff) | |
download | winapi-common-bfdf5415b5e025d795a1a7ee89946b00708f50b2.tar.gz winapi-common-bfdf5415b5e025d795a1a7ee89946b00708f50b2.zip |
Process: import pdb::Process from winapi-debug
Diffstat (limited to 'test/unit_tests/process.cpp')
-rw-r--r-- | test/unit_tests/process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit_tests/process.cpp b/test/unit_tests/process.cpp index a048c84..56a8337 100644 --- a/test/unit_tests/process.cpp +++ b/test/unit_tests/process.cpp @@ -25,7 +25,7 @@ using namespace winapi::process; BOOST_AUTO_TEST_SUITE(process_tests) BOOST_AUTO_TEST_CASE(get_exe_path) { - const auto path = Process::get_exe_path(); + const auto path = Process::current().get_exe_path(); BOOST_TEST_MESSAGE("Executable path: " << path); } |