Fix warnings

Reviewers: teon.banek, mferencevic

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1470
This commit is contained in:
Dominik Gleich 2018-07-04 15:07:11 +02:00
parent 07018cf426
commit b49eabc432
2 changed files with 5 additions and 5 deletions
src/communication
tools/src/mg_import_csv

View File

@ -63,7 +63,7 @@ class Server final {
LOG(FATAL) << "Cannot listen on socket!";
}
thread_ = std::thread([this, workers_count, service_name]() {
thread_ = std::thread([this, service_name]() {
utils::ThreadSetName(fmt::format("{} server", service_name));
std::cout << service_name << " server is fully armed and operational"

View File

@ -162,9 +162,9 @@ std::vector<Field> ReadHeader(std::istream &stream) {
auto name_and_type = utils::Split(value, ":");
CHECK(name_and_type.size() == 1U || name_and_type.size() == 2U)
<< fmt::format(
"\nExpected a name and optionally a type, got '{}'.\nDid you "
"specify a correct CSV delimiter?",
value);
"\nExpected a name and optionally a type, got '{}'.\nDid you "
"specify a correct CSV delimiter?",
value);
auto name = name_and_type[0];
// When type is missing, default is string.
std::string type("string");
@ -476,7 +476,7 @@ std::string GetOutputPath() {
try {
auto wal_dir = durability_dir + "/wal";
if (std::experimental::filesystem::exists(wal_dir)) {
for (const auto &wal_file :
for ([[gnu::unused]] const auto &wal_file :
std::experimental::filesystem::directory_iterator(wal_dir)) {
if (!FLAGS_overwrite) {
LOG(FATAL) << "Durability directory isn't empty. Pass --overwrite to "