Removed C++17 nested namespace definitions. Should build on trusty again.

This commit is contained in:
Jim Evins
2017-11-24 15:49:26 -05:00
parent 4821e103bc
commit c9f2b91daf
129 changed files with 18995 additions and 18592 deletions
+17 -14
View File
@@ -21,24 +21,27 @@
#include "Vendor.h"
namespace glabels::model
namespace glabels
{
Vendor::Vendor( const QString &name, const QString &url ) : mName(name), mUrl(url)
namespace model
{
// empty
}
Vendor::Vendor( const QString &name, const QString &url ) : mName(name), mUrl(url)
{
// empty
}
QString Vendor::name() const
{
return mName;
}
QString Vendor::name() const
{
return mName;
}
QString Vendor::url() const
{
return mUrl;
}
QString Vendor::url() const
{
return mUrl;
}
} // namespace glabels::model
}
}