From a7df0e1d5521248302e5437a1cf7b14c29b3cbaa Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期五, 05 九月 2025 13:55:31 +0800
Subject: [PATCH] 1.CParam增加站点名称,以便将来知道Glass的工艺参数来自哪台机;
---
SourceCode/Bond/Servo/PageLog.cpp | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/SourceCode/Bond/Servo/PageLog.cpp b/SourceCode/Bond/Servo/PageLog.cpp
index 7fe626a..c5cd4a9 100644
--- a/SourceCode/Bond/Servo/PageLog.cpp
+++ b/SourceCode/Bond/Servo/PageLog.cpp
@@ -79,8 +79,13 @@
else {
CString strTemp = strText;
strTemp.TrimRight();
- bMatch = std::regex_match((LPTSTR)(LPCTSTR)strTemp,
- std::regex((LPTSTR)(LPCTSTR)m_strFilterText));
+ try {
+ bMatch = std::regex_match((LPTSTR)(LPCTSTR)strTemp,
+ std::regex((LPTSTR)(LPCTSTR)m_strFilterText));
+ }
+ catch (const std::regex_error& e) {
+
+ }
}
if (m_filterMode == FilterMode::Exclude) {
bMatch = !bMatch;
--
Gitblit v1.9.3