diff options
Diffstat (limited to 'include/lldb/Utility/RegularExpression.h')
-rw-r--r-- | include/lldb/Utility/RegularExpression.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lldb/Utility/RegularExpression.h b/include/lldb/Utility/RegularExpression.h index d97e356475831..dba7001ce0fa9 100644 --- a/include/lldb/Utility/RegularExpression.h +++ b/include/lldb/Utility/RegularExpression.h @@ -210,7 +210,7 @@ private: // Member variables //------------------------------------------------------------------ std::string m_re; ///< A copy of the original regular expression text - int m_comp_err; ///< Error code for the regular expression compilation + int m_comp_err; ///< Status code for the regular expression compilation regex_t m_preg; ///< The compiled regular expression }; |