Correct style check

This commit is contained in:
divanik 2024-07-01 13:24:13 +00:00
parent fee7da5ed3
commit 9e92aed2de
3 changed files with 18 additions and 0 deletions

View File

@ -7,6 +7,12 @@
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class CommandCopy final : public ICommand
{
public:

View File

@ -4,6 +4,12 @@
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class CommandMove final : public ICommand
{
public:

View File

@ -5,6 +5,12 @@
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class CommandRemove final : public ICommand
{
public: