update
This commit is contained in:
parent
d71e31cf80
commit
2f2190f002
|
@ -11,11 +11,12 @@
|
|||
# HelloWrold.class
|
||||
AStyle.exe
|
||||
*.orig
|
||||
*/result.txt
|
||||
xy.txt
|
||||
|
||||
# 忽略指定文件夹
|
||||
build/
|
||||
*/bin/
|
||||
*/result.txt
|
||||
*/__pycache__/
|
||||
.vs/
|
||||
.vscode/
|
||||
|
|
|
@ -29,5 +29,5 @@ using namespace std::chrono;
|
|||
|
||||
#define cppClockCurr \
|
||||
tStop = system_clock::now(); \
|
||||
t = duration<double, std::milli>(tStart - tStop).count(); \
|
||||
t = duration<double, std::milli>(tStop - tStart).count(); \
|
||||
printf("cpp time cost: %f ms.\n", t); \
|
||||
|
|
Loading…
Reference in New Issue