Skip to content

Commit 9489585

Browse files
committed
Consistently use USE_DSTRING instead of USE_STD_STRING
`USE_STD_STRING` is to be set on the build command line, but internally we always check for `USE_DSTRING`.
1 parent 6e0a1fb commit 9489585

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/util/json.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class json_stringt:public jsont
274274
{
275275
}
276276

277-
#ifndef USE_STD_STRING
277+
#ifdef USE_DSTRING
278278
explicit json_stringt(const irep_idt &_value)
279279
: jsont(kindt::J_STRING, id2string(_value))
280280
{

unit/util/irep.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SCENARIO("irept_memory", "[core][utils][irept]")
2222
const std::size_t ref_count_size = 0;
2323
#endif
2424

25-
#ifndef USE_STD_STRING
25+
#ifdef USE_DSTRING
2626
const std::size_t data_size = sizeof(dstringt);
2727
REQUIRE(sizeof(dstringt) == sizeof(unsigned));
2828
#else

0 commit comments

Comments
 (0)