Fix compilation issues by commenting out unused parameters.

This commit is contained in:
Guillermo Biset 2010-07-29 20:03:21 +00:00
parent 3f7fb94529
commit cf2c18887a
2 changed files with 2 additions and 2 deletions

View file

@ -279,7 +279,7 @@ namespace network {
return ss.str();
}
std::string get_bandwidth_stats(int hour)
std::string get_bandwidth_stats(int /*hour*/)
{
return std::string(""); //TODO: implement
}

View file

@ -834,7 +834,7 @@ void ana_network_manager::read_config( const ana::detail::read_buffer& buffer, c
read_gz(cfg, input);
}
size_t ana_network_manager::send_all( const config& cfg, bool zipped )
size_t ana_network_manager::send_all( const config& cfg, bool /*zipped*/ )
{
const std::string output_string = compress_config(cfg);