summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsHtml.cc
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-08-05 13:23:20 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-10 17:16:26 -0500
commitf04f5070dd217e0b23d0ca2e99902a3707d34927 (patch)
tree96644b76f4c0c15d746bbf50deb31cf9998d6b04 /tester/covoar/ReportsHtml.cc
parentGcovData: Convert to C++ (diff)
downloadrtems-tools-f04f5070dd217e0b23d0ca2e99902a3707d34927.tar.bz2
rtems-utils: Change data type definition
Remove typedef of ostream_guard and change datatype of ostream_guards to have the namespace in the variable declarations.
Diffstat (limited to 'tester/covoar/ReportsHtml.cc')
-rw-r--r--tester/covoar/ReportsHtml.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/tester/covoar/ReportsHtml.cc b/tester/covoar/ReportsHtml.cc
index 2ba3463..314f6a4 100644
--- a/tester/covoar/ReportsHtml.cc
+++ b/tester/covoar/ReportsHtml.cc
@@ -13,8 +13,6 @@
#include "DesiredSymbols.h"
#include "ObjdumpProcessor.h"
-typedef rtems::utils::ostream_guard ostream_guard;
-
#if 0
#define TABLE_HEADER_CLASS \
" table-autopage:10 table-page-number:pagenum table-page-count:pages "
@@ -745,7 +743,7 @@ namespace Coverage {
const SymbolInformation& symbolInfo
)
{
- ostream_guard old_state( report );
+ rtems::utils::ostream_guard old_state( report );
// Mark the background color different for odd and even lines.
if ( ( count % 2 ) != 0 ) {