Refactorization in timer.cpp (#5902), Removed misleading comment in symboldatabase
This commit is contained in:
parent
6d0f490138
commit
f1a57cbfcc
|
@ -843,8 +843,6 @@ public:
|
||||||
bool isCPP() const;
|
bool isCPP() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
// Needed by Borland C++:
|
|
||||||
friend class Scope;
|
friend class Scope;
|
||||||
|
|
||||||
void addClassFunction(Scope **info, const Token **tok, const Token *argStart);
|
void addClassFunction(Scope **info, const Token **tok, const Token *argStart);
|
||||||
|
|
|
@ -15,14 +15,13 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "timer.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "timer.h"
|
|
||||||
/*
|
/*
|
||||||
TODO:
|
TODO:
|
||||||
- sort list by time
|
|
||||||
- do not sort the results alphabetically
|
|
||||||
- rename "file" to "single"
|
- rename "file" to "single"
|
||||||
- synchronise map access in multithreaded mode or disable timing
|
- synchronise map access in multithreaded mode or disable timing
|
||||||
- add unit tests
|
- add unit tests
|
||||||
|
|
Loading…
Reference in New Issue