mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-26 23:34:44 +02:00
Use initializer list in ISorter.
This commit is contained in:
parent
be230c1a29
commit
91da641adc
@ -42,10 +42,7 @@ protected:
|
||||
}
|
||||
|
||||
public:
|
||||
ISorter(bool isDescending)
|
||||
{
|
||||
_isDescending = isDescending;
|
||||
};
|
||||
ISorter(bool isDescending) : _isDescending(isDescending) { };
|
||||
virtual ~ISorter() { };
|
||||
virtual std::vector<generic_string> sort(std::vector<generic_string> lines) = 0;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user