Skip to content

Commit

Permalink
Example: Avoid unused variable warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
murraycu committed Dec 15, 2024
1 parent bdeaf54 commit c3868dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example/graph-thingie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <boost/foreach.hpp>
#include <string>
#include <sstream>
#include <cstdlib>

using namespace boost;
using namespace std;
Expand Down Expand Up @@ -104,5 +105,5 @@ int main()
<< get("label", dp, v) << ")\n";
}

return 0;
return status ? EXIT_SUCCESS : EXIT_FAILURE;
}

0 comments on commit c3868dc

Please sign in to comment.