We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c152836 commit 8e722e4Copy full SHA for 8e722e4
ydb/core/debug_tools/operation_log.h
@@ -37,9 +37,6 @@ class TOperationLog {
37
}
38
};
39
40
- TOperationLog(const TOperationLog& other) = delete;
41
- TOperationLog& operator=(const TOperationLog& other) = delete;
42
-
43
TOperationLog(TOperationLog&& other) = default;
44
TOperationLog& operator=(TOperationLog&& other) = default;
45
@@ -49,9 +46,9 @@ class TOperationLog {
49
46
50
47
51
48
52
- bool InitializeRecords(TString value = "Race occured, try again") {
+ void InitializeRecords(TString value = "Race occured, try again") {
53
for (auto& record : Records) {
54
- record.store(new TString(value))
+ record.store(new TString(value));
55
56
57
0 commit comments