Base: Clean up explicit uses of namespaces in places where they're not necessary.

This commit covers all of the common and base classes.
This commit is contained in:
Tim Wojtulewicz 2020-08-21 09:29:37 -07:00
parent 9f802b2a4d
commit fe0c22c789
240 changed files with 6823 additions and 6787 deletions

View file

@ -43,7 +43,7 @@ class KillMeMessage;
* that happens, the thread stops accepting any new messages, finishes
* processes all remaining ones still in the queue, and then exits.
*/
class MsgThread : public BasicThread, public zeek::iosource::IOSource
class MsgThread : public BasicThread, public iosource::IOSource
{
public:
/**
@ -88,7 +88,7 @@ public:
*
* @param vals the values to be given to the event
*/
void SendEvent(const char* name, const int num_vals, threading::Value* *vals);
void SendEvent(const char* name, const int num_vals, Value* *vals);
/**
* Reports an informational message from the child thread. The main
@ -186,7 +186,7 @@ public:
*
* @param msg The message. It will be prefixed with the thread's name.
*/
void Debug(zeek::DebugStream stream, const char* msg);
void Debug(DebugStream stream, const char* msg);
#endif
/**
@ -386,7 +386,7 @@ protected:
* mainly for debugging purposes.
*/
explicit Message(const char* arg_name)
{ name = zeek::util::copy_string(arg_name); }
{ name = util::copy_string(arg_name); }
private:
const char* name;