blob: e4aa56261a00f7fc32d85d3a2f07207dcee90b7b [file] [log] [blame]
#include <bar.hpp>
#include <foo.hpp>
namespace Foo {
void Math::add(int value)
{
sum_ += value;
}
int Math::get_sum() const
{
return sum_;
}
}
namespace Bar {
void Math::add(int value)
{
sum_ += value;
}
int Math::get_sum() const
{
return sum_;
}
} // namespace cs