MXS-1354: Remove external linkage from User class

The User class is no longer declared with external linkage.
This commit is contained in:
Markus Mäkelä 2017-08-14 14:04:41 +03:00
parent e627740777
commit c323f0a551

View File

@ -20,6 +20,8 @@
#include <maxscale/users.h>
#include <maxscale/authenticator.h>
namespace
{
class Users
{
Users(const Users&);
@ -108,6 +110,8 @@ private:
UserMap m_data;
};
}
USERS *users_alloc()
{
Users* rval = new (std::nothrow) Users();