summaryrefslogtreecommitdiff
path: root/sql/semisync.h
diff options
context:
space:
mode:
authorAndrei Elkin <andrei.elkin@mariadb.com>2017-11-27 21:06:17 +0200
committerMonty <monty@mariadb.org>2017-12-18 13:43:38 +0200
commit529120e1cb5ca2dc2192b1e68b76538e0d1db145 (patch)
tree733dc1f70ceb0f0b54f90d6b084c284c96afd84b /sql/semisync.h
parentf279d3c43aa7536b0f9bf46df8f4a3ef02918be0 (diff)
downloadmariadb-git-529120e1cb5ca2dc2192b1e68b76538e0d1db145.tar.gz
MDEV-13073. This patch is a followup of the previous one to convert the trailing underscore identifier to mariadb standard. For identifier representing class private members the underscore is replaced with a `m_` prefix. Otherwise `_` is just removed.bb-10.3-semisync
Diffstat (limited to 'sql/semisync.h')
-rw-r--r--sql/semisync.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/semisync.h b/sql/semisync.h
index bf43ba5c8d8..9deb6c5fd01 100644
--- a/sql/semisync.h
+++ b/sql/semisync.h
@@ -33,13 +33,13 @@ public:
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)
{}
};