From a66246e6efec57dacd00b41a41ac4f52d3f97f4d Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Thu, 18 Feb 2016 15:57:35 +0100 Subject: [PATCH] Remove old constructors. --- arangod/Utils/OperationResult.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/arangod/Utils/OperationResult.h b/arangod/Utils/OperationResult.h index 4e1f6bee45..d318518952 100644 --- a/arangod/Utils/OperationResult.h +++ b/arangod/Utils/OperationResult.h @@ -34,11 +34,6 @@ namespace arangodb { struct OperationResult { - // OperationResult() : buffer(), customTypeHandler(nullptr), code(TRI_ERROR_NO_ERROR), wasSynchronous(false) {} - //OperationResult(std::shared_ptr> buffer, VPackCustomTypeHandler* handler) : buffer(buffer), customTypeHandler(handler), code(TRI_ERROR_NO_ERROR), wasSynchronous(false) {} - //OperationResult(int code, std::shared_ptr> buffer) : buffer(buffer), customTypeHandler(nullptr), code(code), wasSynchronous(false) {} - //OperationResult(std::shared_ptr> buffer, bool wasSynchronous) : buffer(buffer), customTypeHandler(nullptr), code(TRI_ERROR_NO_ERROR), wasSynchronous(wasSynchronous) {} - //explicit OperationResult(std::shared_ptr> buffer) : OperationResult(TRI_ERROR_NO_ERROR, buffer) {} explicit OperationResult(int code) : customTypeHandler(nullptr), code(code), wasSynchronous(false) {