This is part of a series of commits to clean up using namespace at top
level in headers.
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
#include "perfglue/cpu_profiler.h"
void cpu_profiler_handle_command(const std::vector<std::string> &cmd,
- ostream& out)
+ std::ostream& out)
{
if (cmd[1] == "status") {
ProfilerState st;
#include <vector>
void cpu_profiler_handle_command(const std::vector<std::string> &cmd,
- ostream& out);
+ std::ostream& out);
#endif
#include <string>
void cpu_profiler_handle_command(const std::vector<std::string> &cmd,
- ostream& out)
+ std::ostream& out)
{
out << "cpu_profiler support not linked in";
}
#define HEAP_PROFILER_STATS_SIZE 2048
void ceph_heap_profiler_handle_command(const std::vector<std::string>& cmd,
- ostream& out)
+ std::ostream& out)
{
#ifdef HAVE_LIBTCMALLOC
if (cmd.size() == 1 && cmd[0] == "dump") {