diff options
author | hjk <[email protected]> | 2014-06-27 22:11:09 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-06-30 10:44:07 +0200 |
commit | 2cd9a97510dcd7d2706889023908fa085552bb3e (patch) | |
tree | 3a43a85428ef11cee54abd73011f5f463ab56ae4 /src/libs/qmljs/qmljsmodelmanagerinterface.h | |
parent | 24d82a86ab11dc4bc84c8a20d0339f119d4aa0ad (diff) |
Utils: Remove function wrapper
This was an intentional, time-limited workaround that has
served its purpose now that we require C++11.
Change-Id: I96ece9c21bd405d281fd381bd9b87edc00c5ee84
Reviewed-by: Daniel Teske <[email protected]>
Reviewed-by: Fawzi Mohamed <[email protected]>
Diffstat (limited to 'src/libs/qmljs/qmljsmodelmanagerinterface.h')
-rw-r--r-- | src/libs/qmljs/qmljsmodelmanagerinterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.h b/src/libs/qmljs/qmljsmodelmanagerinterface.h index 6e53c21746f..5b3f771cf9a 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.h +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.h @@ -229,7 +229,7 @@ protected: static void parseLoop(QSet<QString> &scannedPaths, QSet<QString> &newLibraries, WorkingCopy workingCopyInternal, QStringList files, ModelManagerInterface *modelManager, QmlJS::Language::Enum mainLanguage, bool emitDocChangedOnDisk, - Utils::function<bool (qreal)> reportProgress); + std::function<bool (qreal)> reportProgress); static void parse(QFutureInterface<void> &future, WorkingCopy workingCopyInternal, QStringList files, |