From 7aa2873a1a9e98b1d1c4f4914bdfcf7606482f78 Mon Sep 17 00:00:00 2001 From: Marco De Marco Date: Mon, 25 Nov 2013 10:09:07 +0100 Subject: [PATCH] Typo on protocol manager --- src/ProtocolManager.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/ProtocolManager.cpp b/src/ProtocolManager.cpp index a878c87..5d0cbbd 100644 --- a/src/ProtocolManager.cpp +++ b/src/ProtocolManager.cpp @@ -437,8 +437,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) if(m_it->get_indicator(i) == soci::i_null) { #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " null" << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " null" << endl; #endif continue; } @@ -450,8 +450,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) std::string value = m_it->get(i); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << value << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " " << value << endl; #endif Response::Metadata::Row::DtString* dtString = row->add_strings_list(); @@ -465,8 +465,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) double value = m_it->get(i); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << value << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " " << value << endl; #endif Response::Metadata::Row::DtDouble* dtDouble = row->add_double_list(); @@ -480,8 +480,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) int value = m_it->get(i); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << value << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " " << value << endl; #endif Response::Metadata::Row::DtInteger* dtInteger = row->add_integer_list(); @@ -495,8 +495,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) long long value = m_it->get(i); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << value << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " " << value << endl; #endif Response::Metadata::Row::DtLongLong* dtLongLong = row->add_long_long_list(); @@ -510,8 +510,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) unsigned long value = m_it->get(i); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << value << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name + << " " << value << endl; #endif Response::Metadata::Row::DtUnsignedLong* dtUnsignedLong = row->add_unsinged_long_list(); @@ -526,8 +526,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) boost::posix_time::ptime ptValue = boost::posix_time::ptime_from_tm(tmValue); #ifdef VERBOSE_DEBUG - INFO_STREAM << "ProtocolManager::fillRow() name " - << name << " " << boost::posix_time::to_simple_string(ptValue) << endl; + INFO_STREAM << "ProtocolManager::fillRow() " << name << " " + << boost::posix_time::to_simple_string(ptValue) << endl; #endif Response::Metadata::Row::DtDate* dtDate = row->add_date_list(); -- GitLab