This is an automated email from the ASF dual-hosted git repository.

shinrich pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  3a8a58c   Clang-Tidy cleanup: Bad brace placement in ifdef'd code.
3a8a58c is described below

commit 3a8a58c467e3b1993a64165e6fd4312b797be47d
Author: Alan M. Carroll <[email protected]>
AuthorDate: Wed May 31 10:16:46 2017 -0500

    Clang-Tidy cleanup: Bad brace placement in ifdef'd code.
---
 lib/ts/Regex.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ts/Regex.cc b/lib/ts/Regex.cc
index 4aa3230..402aed2 100644
--- a/lib/ts/Regex.cc
+++ b/lib/ts/Regex.cc
@@ -127,10 +127,10 @@ Regex::~Regex()
   if (regex_extra) {
 #ifdef PCRE_CONFIG_JIT
     pcre_free_study(regex_extra);
-  }
 #else
     pcre_free(regex_extra);
 #endif
+  }
   if (regex) {
     pcre_free(regex);
   }

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to