Skip to content
Permalink
Browse files
MDEV-13073. This patch is a followup of the previous one to convert t…
…he trailing underscore identifier to mariadb standard. For identifier representing class private members the underscore is replaced with a `m_` prefix. Otherwise `_` is just removed.
  • Loading branch information
andrelkin authored and montywi committed Dec 18, 2017
1 parent f279d3c commit 529120e
Show file tree
Hide file tree
Showing 6 changed files with 204 additions and 204 deletions.
@@ -33,13 +33,13 @@ class Trace {
static const unsigned long k_trace_detail;
static const unsigned long k_trace_net_wait;

unsigned long trace_level_; /* the level for tracing */
unsigned long m_trace_level; /* the level for tracing */

Trace()
:trace_level_(0L)
:m_trace_level(0L)
{}
Trace(unsigned long trace_level)
:trace_level_(trace_level)
:m_trace_level(trace_level)
{}
};

0 comments on commit 529120e

Please sign in to comment.