From 205c71575c272a685011c641a33d26cf66cf60a0 Mon Sep 17 00:00:00 2001
From: gcontini <1121667+gcontini@users.noreply.github.com>
Date: 周一, 10 2月 2020 05:01:07 +0800
Subject: [PATCH] fix unit test with old versions of boost

---
 src/library/licensecc.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/library/licensecc.cpp b/src/library/licensecc.cpp
index dee72dc..f4e6063 100644
--- a/src/library/licensecc.cpp
+++ b/src/library/licensecc.cpp
@@ -32,7 +32,7 @@
 	bool result = false;
 	if (*bufSize > LCC_API_PC_IDENTIFIER_SIZE && chbuffer != nullptr) {
 		try {
-			string pc_id = license::PcIdentifierFacade::generate_user_pc_signature(pc_id_method);
+			string pc_id = license::pc_identifier::PcIdentifierFacade::generate_user_pc_signature(pc_id_method);
 			strncpy(chbuffer, pc_id.c_str(), *bufSize);
 			result = true;
 		} catch (const std::exception& ex) {

--
Gitblit v1.9.1