diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-06-04 13:14:36 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-06-04 13:14:36 +1000 | 
| commit | 2422568ba2e9fa9740a423f1b1c1c2733d03cb7a (patch) | |
| tree | 9655431756de678b6599ecd21523f910259f3788 | |
| parent | f1e5d3fe578f201618a63afb48646dcd5506685d (diff) | |
| download | scintilla-mirror-2422568ba2e9fa9740a423f1b1c1c2733d03cb7a.tar.gz | |
Fix extra white space.
| -rw-r--r-- | src/CellBuffer.cxx | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index acdfc6e5c..c540f895f 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -140,14 +140,14 @@ class LineVector : public ILineVector {  public:  	LineVector() : starts(256), perLine(nullptr) {  		Init(); - 	} +	}  	// Deleted so LineVector objects can not be copied.  	LineVector(const LineVector &) = delete;  	LineVector(LineVector &&) = delete;  	LineVector &operator=(const LineVector &) = delete;  	LineVector &operator=(LineVector &&) = delete;  	~LineVector() override { - 	} +	}  	void Init() override {  		starts.DeleteAll();  		if (perLine) { | 
