From ccf09ceddfd3d6feff094d2f3eb8892322b3c8ef Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 29 Apr 2008 18:18:01 +0000 Subject: [PATCH] Remove names of unused variables. Fixes #1832 and fixes #1865 [SVN r44889] --- include/boost/graph/dijkstra_shortest_paths.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/dijkstra_shortest_paths.hpp b/include/boost/graph/dijkstra_shortest_paths.hpp index ef6b824c..243b17f7 100644 --- a/include/boost/graph/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/dijkstra_shortest_paths.hpp @@ -109,7 +109,7 @@ namespace boost { } template - void initialize_vertex(Vertex u, Graph& g) { } + void initialize_vertex(Vertex /*u*/, Graph& /*g*/) { } template void non_tree_edge(Edge, Graph&) { } template