Browse Source

Merge pull request #14140 from glassez/namespace

Use nested namespaces definition syntax
adaptive-webui-19844
Vladimir Golovnev 4 years ago committed by GitHub
parent
commit
08e0349ca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/base/utils/bytearray.h
  2. 5
      src/base/utils/foreignapps.h
  3. 5
      src/base/utils/fs.h
  4. 5
      src/base/utils/gzip.h
  5. 5
      src/base/utils/io.h
  6. 5
      src/base/utils/misc.h
  7. 5
      src/base/utils/net.h
  8. 5
      src/base/utils/password.h
  9. 5
      src/base/utils/random.h
  10. 5
      src/base/utils/string.h

5
src/base/utils/bytearray.h

@ -33,9 +33,7 @@ @@ -33,9 +33,7 @@
class QByteArray;
namespace Utils
{
namespace ByteArray
namespace Utils::ByteArray
{
// Mimic QString::splitRef(sep, behavior)
QVector<QByteArray> splitToViews(const QByteArray &in, const QByteArray &sep, const QString::SplitBehavior behavior = QString::KeepEmptyParts);
@ -44,4 +42,3 @@ namespace Utils @@ -44,4 +42,3 @@ namespace Utils
// we only return a partial view
const QByteArray midView(const QByteArray &in, int pos, int len = -1);
}
}

5
src/base/utils/foreignapps.h

@ -33,9 +33,7 @@ @@ -33,9 +33,7 @@
#include "base/utils/version.h"
namespace Utils
{
namespace ForeignApps
namespace Utils::ForeignApps
{
struct PythonInfo
{
@ -50,4 +48,3 @@ namespace Utils @@ -50,4 +48,3 @@ namespace Utils
PythonInfo pythonInfo();
}
}

5
src/base/utils/fs.h

@ -34,9 +34,7 @@ @@ -34,9 +34,7 @@
#include <QString>
namespace Utils
{
namespace Fs
namespace Utils::Fs
{
/**
* Converts a path to a string suitable for display.
@ -77,4 +75,3 @@ namespace Utils @@ -77,4 +75,3 @@ namespace Utils
bool isNetworkFileSystem(const QString &path);
#endif
}
}

5
src/base/utils/gzip.h

@ -31,11 +31,8 @@ @@ -31,11 +31,8 @@
class QByteArray;
namespace Utils
{
namespace Gzip
namespace Utils::Gzip
{
QByteArray compress(const QByteArray &data, int level = 6, bool *ok = nullptr);
QByteArray decompress(const QByteArray &data, bool *ok = nullptr);
}
}

5
src/base/utils/io.h

@ -34,9 +34,7 @@ @@ -34,9 +34,7 @@
class QByteArray;
class QFileDevice;
namespace Utils
{
namespace IO
namespace Utils::IO
{
// A wrapper class that satisfy LegacyOutputIterator requirement
class FileDeviceOutputIterator
@ -77,4 +75,3 @@ namespace Utils @@ -77,4 +75,3 @@ namespace Utils
int m_bufferSize;
};
}
}

5
src/base/utils/misc.h

@ -41,9 +41,7 @@ enum class ShutdownDialogAction; @@ -41,9 +41,7 @@ enum class ShutdownDialogAction;
/* Miscellaneous functions that can be useful */
namespace Utils
{
namespace Misc
namespace Utils::Misc
{
// use binary prefix standards from IEC 60027-2
// see http://en.wikipedia.org/wiki/Kilobyte
@ -106,4 +104,3 @@ namespace Utils @@ -106,4 +104,3 @@ namespace Utils
}
#endif // Q_OS_WIN
}
}

5
src/base/utils/net.h

@ -35,9 +35,7 @@ class QSslCertificate; @@ -35,9 +35,7 @@ class QSslCertificate;
class QSslKey;
class QString;
namespace Utils
{
namespace Net
namespace Utils::Net
{
using Subnet = QPair<QHostAddress, int>;
@ -55,4 +53,3 @@ namespace Utils @@ -55,4 +53,3 @@ namespace Utils
QSslKey loadSSLKey(const QByteArray &data);
bool isSSLKeyValid(const QByteArray &data);
}
}

5
src/base/utils/password.h

@ -31,9 +31,7 @@ @@ -31,9 +31,7 @@
class QByteArray;
class QString;
namespace Utils
{
namespace Password
namespace Utils::Password
{
// Implements constant-time comparison to protect against timing attacks
// Taken from https://crackstation.net/hashing-security.htm
@ -48,4 +46,3 @@ namespace Utils @@ -48,4 +46,3 @@ namespace Utils
bool verify(const QByteArray &secret, const QByteArray &password);
}
}
}

5
src/base/utils/random.h

@ -31,10 +31,7 @@ @@ -31,10 +31,7 @@
#include <cstdint>
#include <limits>
namespace Utils
{
namespace Random
namespace Utils::Random
{
uint32_t rand(uint32_t min = 0, uint32_t max = std::numeric_limits<uint32_t>::max());
}
}

5
src/base/utils/string.h

@ -37,9 +37,7 @@ @@ -37,9 +37,7 @@
class QStringRef;
namespace Utils
{
namespace String
namespace Utils::String
{
QString fromDouble(double n, int precision);
@ -92,4 +90,3 @@ namespace Utils @@ -92,4 +90,3 @@ namespace Utils
return (ok ? value : defaultValue);
}
}
}

Loading…
Cancel
Save