1
0
Fork 0

indentation

This commit is contained in:
Jan Steemann 2013-07-23 09:08:26 +02:00
parent 6dfa6693c8
commit d1a397b9af
1 changed files with 12 additions and 12 deletions

View File

@ -205,11 +205,11 @@ TRI_col_file_structure_t;
////////////////////////////////////////////////////////////////////////////////
typedef enum {
TRI_COL_STATE_CLOSED = 1, // collection is closed
TRI_COL_STATE_READ = 2, // collection is opened read only
TRI_COL_STATE_WRITE = 3, // collection is opened read/append
TRI_COL_STATE_OPEN_ERROR = 4, // an error has occurred while opening
TRI_COL_STATE_WRITE_ERROR = 5 // an error has occurred while writing
TRI_COL_STATE_CLOSED = 1, // collection is closed
TRI_COL_STATE_READ = 2, // collection is opened read only
TRI_COL_STATE_WRITE = 3, // collection is opened read/append
TRI_COL_STATE_OPEN_ERROR = 4, // an error has occurred while opening
TRI_COL_STATE_WRITE_ERROR = 5 // an error has occurred while writing
}
TRI_col_state_e;
@ -224,9 +224,9 @@ typedef uint32_t TRI_col_version_t;
////////////////////////////////////////////////////////////////////////////////
typedef enum {
TRI_COL_TYPE_SHAPE = 1,
TRI_COL_TYPE_SHAPE = 1,
TRI_COL_TYPE_DOCUMENT = 2,
TRI_COL_TYPE_EDGE = 3
TRI_COL_TYPE_EDGE = 3
}
TRI_col_type_e;
@ -262,11 +262,11 @@ typedef struct TRI_col_info_s {
struct TRI_json_s* _keyOptions; // options for key creation
// flags
bool _deleted : 1; // if true, collection has been deleted
bool _doCompact: 1; // if true, collection will be compacted
bool _isSystem : 1; // if true, this is a system collection
bool _isVolatile : 1; // if true, collection is memory-only
bool _waitForSync : 1; // if true, wait for msync
bool _deleted; // if true, collection has been deleted
bool _doCompact; // if true, collection will be compacted
bool _isSystem; // if true, this is a system collection
bool _isVolatile; // if true, collection is memory-only
bool _waitForSync; // if true, wait for msync
}
TRI_col_info_t;