{
setCheckTransactions(false);
ROOT_DOC->finishOperation();
- while(myOperationAttachedToNext.back()) { // with nested, the first transaction can not be attached
+ while(myOperationAttachedToNext.back()) {
+ // with nested, the first transaction can not be attached
ROOT_DOC->finishOperation();
myOperationAttachedToNext.pop_back();
}
{
setCheckTransactions(false);
ROOT_DOC->abortOperation();
- while(myOperationAttachedToNext.back()) { // with nested, the first transaction can not be attached
+ while(myOperationAttachedToNext.back()) {
+ // with nested, the first transaction can not be attached
ROOT_DOC->abortOperation();
myOperationAttachedToNext.pop_back();
}
/// if true, generates error if document is updated outside of transaction
bool myCheckTransactions;
- ///< if true, the current operation must be committed twice, with nested (list for any nesting depth)
+ /// if true, the current operation must be committed twice,
+ /// with nested (list for any nesting depth)
std::list<bool> myOperationAttachedToNext;
public: