summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-12-01 12:46:26 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-12-12 02:55:41 +0100
commit9fd8645ac67e0538cb5cf95fe46d8701f3c8535c (patch)
tree7770bbea25a9c10451a4ab5e0e004591d29452c7 /storageapi
parent24cb878af1ec770f075f6ccfd582dcceb146cb14 (diff)
Do not include asciistream everywhere.
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/messageapi/storagemessage.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/storageapi/src/vespa/storageapi/messageapi/storagemessage.h b/storageapi/src/vespa/storageapi/messageapi/storagemessage.h
index afb394e6d8b..27d87dd44ca 100644
--- a/storageapi/src/vespa/storageapi/messageapi/storagemessage.h
+++ b/storageapi/src/vespa/storageapi/messageapi/storagemessage.h
@@ -15,7 +15,6 @@
#include <vespa/vespalib/util/printable.h>
#include <vespa/messagebus/routing/route.h>
#include <vespa/vespalib/util/sync.h>
-#include <vespa/vespalib/stllike/asciistream.h>
#include <vespa/storageapi/messageapi/messagehandler.h>
#include <vespa/vdslib/state/nodetype.h>
#include <vespa/messagebus/trace.h>
@@ -23,6 +22,10 @@
#include <vespa/storageframework/generic/memory/memorytoken.h>
#include <vespa/document/bucket/bucketid.h>
+
+namespace vespalib {
+ class asciistream;
+}
// The following macros are provided as a way to write storage messages simply.
// They implement the parts of the code that can easily be automaticly
// generated.
@@ -68,7 +71,6 @@ public: \
return std::unique_ptr<storage::api::StorageReply>(new reply(*this)); \
}
-
namespace storage {
namespace api {