Skip to content

Commit

Permalink
Remove unneeded namespace qualifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
gleb-cloudius authored and avikivity committed Aug 12, 2015
1 parent ea2632e commit d8dd5a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exceptions/exceptions.hh
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ public:
sstring get_message() const { return what(); }
};

class protocol_exception : public exceptions::cassandra_exception {
class protocol_exception : public cassandra_exception {
public:
protocol_exception(sstring msg)
: exceptions::cassandra_exception{exceptions::exception_code::PROTOCOL_ERROR, std::move(msg)}
{ }
};

struct unavailable_exception : exceptions::cassandra_exception {
struct unavailable_exception : cassandra_exception {
db::consistency_level consistency;
int32_t required;
int32_t alive;
Expand Down

0 comments on commit d8dd5a9

Please sign in to comment.