Skip to content

Commit 79032b1

Browse files
committed
Address vs15 warning due to unused exception reference
1 parent de02d3f commit 79032b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/pdal/pdalc_config.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace pdal
3030
{
3131
env = std::getenv("GDAL_DATA");
3232
}
33-
catch (const std::exception &e)
33+
catch (const std::exception &)
3434
{
3535
env = nullptr;
3636
}
@@ -60,7 +60,7 @@ namespace pdal
6060
{
6161
env = std::getenv("PROJ_LIB");
6262
}
63-
catch (const std::exception &e)
63+
catch (const std::exception &)
6464
{
6565
env = nullptr;
6666
}

0 commit comments

Comments
 (0)