[App] Switch from boost::tuple to std::tuple

It's better to use the standard lib when possible
This commit is contained in:
Benjamin Nauck
2021-03-06 02:19:09 +01:00
committed by wwmayer
parent b2ebaa01a2
commit 7ee7e60310
4 changed files with 6 additions and 6 deletions

View File

@@ -451,7 +451,7 @@ AppExport UnitExpression * parseUnit(const App::DocumentObject *owner, const cha
AppExport ObjectIdentifier parsePath(const App::DocumentObject *owner, const char* buffer);
AppExport bool isTokenAnIndentifier(const std::string & str);
AppExport bool isTokenAUnit(const std::string & str);
AppExport std::vector<boost::tuple<int, int, std::string> > tokenize(const std::string & str);
AppExport std::vector<std::tuple<int, int, std::string> > tokenize(const std::string & str);
/// Convenient class to mark begin of importing
class AppExport ExpressionImporter {