renamed class SingalVector -> SimpleSignalVector

This commit is contained in:
fourtf
2018-06-28 20:27:24 +02:00
parent 6013591730
commit 712a292d7e
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -8,10 +8,10 @@
namespace chatterino {
template <typename TValue>
class SignalVector
class SimpleSignalVector
{
public:
SignalVector &operator=(std::vector<TValue> &other)
SimpleSignalVector &operator=(std::vector<TValue> &other)
{
this->data = other;