Skip to content
Snippets Groups Projects
Commit 07c5b51b authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Remove some stray comments from profiling file

parent f937d70b
No related branches found
No related tags found
No related merge requests found
...@@ -30,14 +30,6 @@ void startProfiling() { ...@@ -30,14 +30,6 @@ void startProfiling() {
} }
void stopProfiling() { void stopProfiling() {
// std::chrono::time_point<std::chrono::high_resolution_clock> end_time =
// std::chrono::high_resolution_clock::now();
//std::chrono::duration<double, std::milli> fp_ms = end_time - start_time;
//profile_data = "";
//profile_data.append("Total Time : ");
//profile_data.append(std::to_string(fp_ms.count()));
FILE *fp = fopen("profile_data.txt", "w+"); FILE *fp = fopen("profile_data.txt", "w+");
if (fp != NULL) { if (fp != NULL) {
fwrite(profile_data.c_str(), 1, profile_data.length(), fp); fwrite(profile_data.c_str(), 1, profile_data.length(), fp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment