1
0
Fork 0

Fixed invalid forward declarations

This commit is contained in:
Michael Hackstein 2016-03-18 15:52:49 +01:00
parent 20eb786921
commit 25b33b9048
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
#include "RestHandler/RestVocbaseBaseHandler.h" #include "RestHandler/RestVocbaseBaseHandler.h"
namespace arangodb { namespace arangodb {
class OperationOptions; struct OperationOptions;
class SingleCollectionTransaction; class SingleCollectionTransaction;
struct RestImportResult { struct RestImportResult {

View File

@ -40,7 +40,7 @@ namespace arangodb {
class EdgeIndex; class EdgeIndex;
class Index; class Index;
class KeyGenerator; class KeyGenerator;
class OperationOptions; struct OperationOptions;
class PrimaryIndex; class PrimaryIndex;
class Transaction; class Transaction;
namespace velocypack { namespace velocypack {

View File

@ -52,7 +52,7 @@ class Builder;
namespace aql { namespace aql {
class QueryList; class QueryList;
} }
class VocbaseAuthCache; struct VocbaseAuthCache;
class VocbaseAuthInfo; class VocbaseAuthInfo;
class VocbaseCollectionInfo; class VocbaseCollectionInfo;
class CollectionKeysRepository; class CollectionKeysRepository;