summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp')
-rw-r--r--Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp b/Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp
index aa174a3b8b7..b0ddacb668a 100644
--- a/Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp
+++ b/Build/source/texk/dvisvgm/dvisvgm-src/tests/TFMReaderTest.cpp
@@ -37,14 +37,14 @@ class TFMReaderTest : public ::testing::Test
public:
TFMReaderTest () : tfm(0) {}
- void SetUp () {
+ void SetUp () override {
string fname = string(SRCDIR)+"/data/cmr10.tfm";
ifstream ifs(fname.c_str(), ios::binary);
ASSERT_TRUE(ifs.is_open()) << "failed opening " << fname;
tfm = new TFM(ifs);
}
- void TearDown () {
+ void TearDown () override {
delete tfm;
}