Revision: 76214
          http://sourceforge.net/p/brlcad/code/76214
Author:   starseeker
Date:     2020-06-26 12:23:04 +0000 (Fri, 26 Jun 2020)
Log Message:
-----------
Period character prefixed matches should also be skipped

Modified Paths:
--------------
    brlcad/trunk/regress/repository/repocheck.cpp

Modified: brlcad/trunk/regress/repository/repocheck.cpp
===================================================================
--- brlcad/trunk/regress/repository/repocheck.cpp       2020-06-26 01:26:18 UTC 
(rev 76213)
+++ brlcad/trunk/regress/repository/repocheck.cpp       2020-06-26 12:23:04 UTC 
(rev 76214)
@@ -273,7 +273,7 @@
        cnt = 0;
        rf = api_func_strs[cnt];
        while (rf) {
-           std::string rrf = std::string(".*[^a-zA-Z0-9_:]") + std::string(rf) 
+ std::string("[(].*");
+           std::string rrf = std::string(".*[^a-zA-Z0-9_:.]") + 
std::string(rf) + std::string("[(].*");
            r.api_func_filters[std::string(rf)] = std::regex(rrf);
            cnt++;
            rf = api_func_strs[cnt];

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to