From d4b5fec0a673a6c717a7d1d428f9beadc9539bfe Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Thu, 13 Apr 2023 16:40:15 +0200 Subject: [PATCH] be verbose when loading succeeded --- Installation/test/Installation/test_gmp_mpfr_dll.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Installation/test/Installation/test_gmp_mpfr_dll.cpp b/Installation/test/Installation/test_gmp_mpfr_dll.cpp index e7ccd4307d2..17ec0939d6a 100644 --- a/Installation/test/Installation/test_gmp_mpfr_dll.cpp +++ b/Installation/test/Installation/test_gmp_mpfr_dll.cpp @@ -33,6 +33,9 @@ bool get_version_info(const LPCTSTR name, std::cerr << name << " is not loaded!\n"; return false; } + else + std::cerr << name << " is loaded.\n"; + char fileName[_MAX_PATH]; DWORD size = GetModuleFileName(g_dllHandle, fileName, _MAX_PATH); fileName[size] = NULL;