forked from qt-creator/qt-creator
Utils: Add std::string conversion constructor and operator to small string
Change-Id: Ia76d7647fc8d2c9b72bc5bce2e7a6e2c3fcc18cc Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -131,6 +131,11 @@ public:
|
||||
return clonedVector;
|
||||
}
|
||||
|
||||
operator std::vector<std::string>() const
|
||||
{
|
||||
return std::vector<std::string>(begin(), end());
|
||||
}
|
||||
|
||||
private:
|
||||
std::size_t totalByteSize() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user