diff options
Diffstat (limited to 'src/SplitVector.h')
| -rw-r--r-- | src/SplitVector.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/SplitVector.h b/src/SplitVector.h index 288c9e39f..3153700f5 100644 --- a/src/SplitVector.h +++ b/src/SplitVector.h @@ -85,6 +85,9 @@ public:  	/// copy exisiting contents to the new buffer.  	/// Must not be used to decrease the size of the buffer.  	void ReAllocate(int newSize) { +		if (newSize < 0) +			throw std::runtime_error("SplitVector::ReAllocate: negative size."); +  		if (newSize > size) {  			// Move the gap to the end  			GapTo(lengthBody); | 
