From d7cc141fe0d13015ac3b2a52c33b25f5ea0b1271 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 14 May 2018 15:34:02 +1000 Subject: Replace 0 with nullptr. --- src/CellBuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/CellBuffer.h') diff --git a/src/CellBuffer.h b/src/CellBuffer.h index a98d9abcb..838968ec7 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -45,7 +45,7 @@ public: // Move constructor allows vector to be resized without reallocating. 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 Create(actionType at_, Sci::Position position_=0, const char *data_=nullptr, Sci::Position lenData_=0, bool mayCoalesce_=true); void Clear(); }; -- cgit v1.2.3