1
0
Fork 0

commented header

This commit is contained in:
Jan Steemann 2016-02-16 16:04:09 +01:00
parent 7a8968348f
commit e1817ac3b7
1 changed files with 2 additions and 1 deletions

View File

@ -49,10 +49,11 @@
namespace arangodb { namespace arangodb {
struct OperationOptions { struct OperationOptions {
OperationOptions() : waitForSync(false), keepNull(false), mergeObjects(false) {} OperationOptions() : waitForSync(false), keepNull(false), mergeObjects(false), silent(false) {}
bool waitForSync; bool waitForSync;
bool keepNull; bool keepNull;
bool mergeObjects; bool mergeObjects;
bool silent;
}; };
struct OperationResult { struct OperationResult {