aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4identifierhash_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix build with MSVCSimon Hausmann2020-04-151-1/+1
| | | | | | | | | After the latest changes to QHash (and implicitly QSet), there's more out-of-line code and that requires exporting QV4::IdentifierHash. Change-Id: Ibb2f4458c381e89e3e63b083adddd7631e4f8a51 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Re-arrange qv4identifier{_p.h|.cpp}Ulf Hermann2020-04-151-0/+99
QV4::IdentifierHashData doesn't need to be visible to all the clients. Furthermore, it can be completely inline. The public functions of QV4::IdentifierHash need to be out of line, but the private ones can be all inline. This shouldn't make much of a difference as most of the public functions call at least one private function. Finally, the files should be named by the class names. Change-Id: I931f2aa71103e41fdd3dae9cc47d204edece0e12 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>