From c2649d0febdf32bad7a2952e844dfa3485f7704d Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 10 May 2013 13:33:00 +0200 Subject: [PATCH] namespace --- pdns/test-dnsrecords_cc.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pdns/test-dnsrecords_cc.cc b/pdns/test-dnsrecords_cc.cc index a4c5cb4038..93b8a73c05 100644 --- a/pdns/test-dnsrecords_cc.cc +++ b/pdns/test-dnsrecords_cc.cc @@ -12,8 +12,8 @@ BOOST_AUTO_TEST_SUITE(dnsrecords_cc) BOOST_AUTO_TEST_CASE(test_EUI48) { EUI48RecordContent::report(); - string lineformat="\x00\x11\x22\x33\x44\x55"; - string zoneformat="00-11-22-33-44-55"; + std::string lineformat="\x00\x11\x22\x33\x44\x55"; + std::string zoneformat="00-11-22-33-44-55"; DNSRecordContent *rec = DNSRecordContent::mastermake(QType::EUI48, 1, zoneformat); @@ -29,8 +29,8 @@ BOOST_AUTO_TEST_CASE(test_EUI48) { BOOST_AUTO_TEST_CASE(test_EUI64) { EUI64RecordContent::report(); - string lineformat="\x00\x11\x22\x33\x44\x55\x66\x77"; - string zoneformat="00-11-22-33-44-55-66-77"; + std::string lineformat="\x00\x11\x22\x33\x44\x55\x66\x77"; + std::string zoneformat="00-11-22-33-44-55-66-77"; DNSRecordContent *rec = DNSRecordContent::mastermake(QType::EUI64, 1, zoneformat); -- 2.47.3