Skip to content

Commit

Permalink
Remove style from TABLE tag for benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Mar 12, 2017
1 parent c2efbae commit 2b4ec92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bench1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ void Benchmark1(double t, double hertz)
else
cpb = "";

std::cout << "\n<TABLE style=\"border:1px solid\">";
std::cout << "\n<TABLE>";
std::cout << "\n<COLGROUP><COL style=\"text-align: left;\"><COL style=\"text-align: right;\">";
std::cout << "<COL style=\"text-align: right;\">";
std::cout << "\n<THEAD style=\"background: #F0F0F0\"><TR><TH>Algorithm<TH>MiB/Second" << cpb;
Expand Down Expand Up @@ -469,7 +469,7 @@ void Benchmark2(double t, double hertz)
cpb = cpk = "";
}

std::cout << "\n<TABLE style=\"border:1px solid\">";
std::cout << "\n<TABLE>";
std::cout << "\n<COLGROUP><COL style=\"text-align: left;\"><COL style=\"text-align: right;\"><COL style=";
std::cout << "\"text-align: right;\"><COL style=\"text-align: right;\"><COL style=\"text-align: right;\">";
std::cout << "\n<THEAD style=\"background: #F0F0F0\"><TR><TH>Algorithm<TH>MiB/Second" << cpb;
Expand Down
2 changes: 1 addition & 1 deletion bench2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void Benchmark3(double t, double hertz)
g_allocatedTime = t;
g_hertz = hertz;

std::cout << "\n<TABLE style=\"border:1px solid\">";
std::cout << "\n<TABLE>";
std::cout << "\n<COLGROUP><COL style=\"text-align: left;\"><COL style=";
std::cout << "\"text-align: right;\"><COL style=\"text-align: right;\">";
std::cout << "\n<THEAD style=\"background: #F0F0F0\"><TR><TH>Operation<TH>Milliseconds/Operation";
Expand Down

0 comments on commit 2b4ec92

Please sign in to comment.