diff options
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 0e2c4f219..3e3ec3015 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -43,8 +43,7 @@ public: Action &operator=(const Action &other) = delete; Action &operator=(const Action &&other) = delete; // Move constructor allows vector to be resized without reallocating. - // Could use =default but MSVC 2013 warns. - Action(Action &&other); + Action(Action &&other) noexcept = default; ~Action(); void Create(actionType at_, Sci::Position position_=0, const char *data_=0, Sci::Position lenData_=0, bool mayCoalesce_=true); void Clear(); |