Update graph/breadth_first_search.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Gpamangkp 2020-10-23 09:13:27 +05:30 committed by GitHub
parent baffac80ad
commit 1cbc00c541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,10 @@
#include <list>
#include <string>
///namespace graph which contains the class Graph
/**
* \namespace graph
* \brief Graph algorithms
*/
namespace graph{
/* Class Graph definition */
template<typename T>