Skip to content

Commit

Permalink
Fix misc-unused-alias-decls in various
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Liberty <[email protected]>
  • Loading branch information
maliberty committed Jan 11, 2025
1 parent b7dc300 commit d3feb61
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/dst/src/BalancerConnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
#include <boost/enable_shared_from_this.hpp>
#include <boost/make_shared.hpp>

namespace asio = boost::asio;
namespace ip = asio::ip;
using asio::ip::tcp;

namespace utl {
class Logger;
}
namespace dst {

namespace asio = boost::asio;
using asio::ip::tcp;

class LoadBalancer;

class BalancerConnection
Expand Down
3 changes: 3 additions & 0 deletions src/dst/src/LoadBalancer.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ class Logger;
}

namespace dst {

namespace ip = asio::ip;

const int workers_discovery_period = 15; // time in seconds between retrying to
// find new workers on the network
class Distributed;
Expand Down
2 changes: 2 additions & 0 deletions src/gui/src/renderThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@

namespace gui {

namespace bg = boost::geometry;

using odb::dbBlock;
using odb::dbInst;
using odb::dbMaster;
Expand Down
1 change: 0 additions & 1 deletion src/gui/src/search.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@

namespace gui {

namespace bg = boost::geometry;
namespace bgi = boost::geometry::index;

// This is a geometric search structure. It wraps up Boost's
Expand Down

0 comments on commit d3feb61

Please sign in to comment.