From 0b53b59b34af2abb2447110b1ed4f61e1ae4c6c9 Mon Sep 17 00:00:00 2001 From: vng Date: Mon, 17 Jan 2011 21:29:50 +0200 Subject: [PATCH] Fix GCC warning. --- indexer/feature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/feature.cpp b/indexer/feature.cpp index 58e1077900..4a16d3f4ec 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -339,7 +339,7 @@ namespace uint8_t m_pos, m_current; public: - BitSink(TSink & sink) : m_sink(sink), m_current(0), m_pos(0) {} + BitSink(TSink & sink) : m_sink(sink), m_pos(0), m_current(0) {} void Finish() {