mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
12 lines
235 B
C++
12 lines
235 B
C++
|
#pragma once
|
||
|
|
||
|
#include <QDebug>
|
||
|
#include <QElapsedTimer>
|
||
|
|
||
|
#define BENCH(x) \
|
||
|
QElapsedTimer x; \
|
||
|
x.start();
|
||
|
|
||
|
#define MARK(x) \
|
||
|
qDebug() << __FILE__ << __LINE__ << static_cast<float>(x.nsecsElapsed()) / 100000.0 << "ms";
|