Skip to content

Commit bfac95c

Browse files
committed
CI fix: unused variable
1 parent 3e84140 commit bfac95c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/IO/JSON/JSONIOHandlerImpl.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1244,6 +1244,7 @@ std::shared_ptr<nlohmann::json> JSONIOHandlerImpl::obtainJsonContents(File file)
12441244
}
12451245
// read from file
12461246
auto [fh, fh_with_precision, _] = getFilehandle(file, Access::READ_ONLY);
1247+
(void)_;
12471248
std::shared_ptr<nlohmann::json> res = std::make_shared<nlohmann::json>();
12481249
switch (m_fileFormat)
12491250
{
@@ -1280,6 +1281,7 @@ void JSONIOHandlerImpl::putJsonContents(
12801281
{
12811282
auto [fh, _, fh_with_precision] =
12821283
getFilehandle(filename, Access::CREATE);
1284+
(void)_;
12831285
(*it->second)["platform_byte_widths"] = platformSpecifics();
12841286

12851287
switch (m_fileFormat)

0 commit comments

Comments
 (0)