aboutsummaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-11-30 18:06:54 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-12-12 02:55:41 +0100
commit602bb910df6998d0f7c56a67d2707c9c6c2e7d58 (patch)
treebb0d0f57b4de9e3ef8ea03d29929747f586e8d40 /storageapi
parentc650f2f379179780d428fb5505a0ed3d52f48ba4 (diff)
Targeted include
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/buckets/bucketinfo.cpp7
-rw-r--r--storageapi/src/vespa/storageapi/mbusprot/storageprotocol.cpp15
2 files changed, 9 insertions, 13 deletions
diff --git a/storageapi/src/vespa/storageapi/buckets/bucketinfo.cpp b/storageapi/src/vespa/storageapi/buckets/bucketinfo.cpp
index e4c89b81f18..0304da45a38 100644
--- a/storageapi/src/vespa/storageapi/buckets/bucketinfo.cpp
+++ b/storageapi/src/vespa/storageapi/buckets/bucketinfo.cpp
@@ -1,6 +1,5 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
-#include <vespa/storageapi/buckets/bucketinfo.h>
+#include "bucketinfo.h"
namespace storage {
namespace api {
@@ -92,9 +91,7 @@ BucketInfo::print(vespalib::asciistream& out, const PrintProperties&) const
{
out << "BucketInfo(";
if (valid()) {
- std::ostringstream ost;
- ost << std::hex << _checksum;
- out << "crc 0x" << ost.str()
+ out << "crc 0x" << vespalib::hex << _checksum << vespalib::dec
<< ", docCount " << _docCount
<< ", totDocSize " << _totDocSize;
if (_totDocSize != _usedFileSize) {
diff --git a/storageapi/src/vespa/storageapi/mbusprot/storageprotocol.cpp b/storageapi/src/vespa/storageapi/mbusprot/storageprotocol.cpp
index 7e1e3815dc5..27fb603db24 100644
--- a/storageapi/src/vespa/storageapi/mbusprot/storageprotocol.cpp
+++ b/storageapi/src/vespa/storageapi/mbusprot/storageprotocol.cpp
@@ -1,14 +1,13 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
-#include <vespa/storageapi/mbusprot/storageprotocol.h>
-
-#include <vespa/log/log.h>
-#include <vespa/storageapi/mbusprot/protocolserialization.h>
-#include <vespa/storageapi/mbusprot/serializationhelper.h>
-#include <vespa/storageapi/mbusprot/storagecommand.h>
-#include <vespa/storageapi/mbusprot/storagereply.h>
+#include "storageprotocol.h"
+#include "protocolserialization.h"
+#include "serializationhelper.h"
+#include "storagecommand.h"
+#include "storagereply.h"
#include <vespa/vespalib/util/exceptions.h>
+#include <vespa/document/util/stringutil.h>
+#include <vespa/log/log.h>
LOG_SETUP(".storage.api.mbusprot.protocol");
namespace storage {