Fixing warnings on clang [#METR-2807].

This commit is contained in:
Alexey Milovidov 2016-03-07 07:35:06 +03:00
parent 30cba89be0
commit 0a48e6296e
8 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ namespace DB
{
class QuotaForIntervals;
class ProcessListElement;
struct ProcessListElement;
/** Смотрит за тем, как работает источник блоков.

View File

@ -9,7 +9,7 @@
namespace DB
{
class Settings;
struct Settings;
class Context;
class Cluster;
class Throttler;

View File

@ -7,7 +7,7 @@
namespace DB
{
class Settings;
struct Settings;
class Context;
class Cluster;

View File

@ -11,7 +11,7 @@ namespace DB
class ExpressionAnalyzer;
class ASTSelectQuery;
class SubqueryForSet;
struct SubqueryForSet;
/** Интерпретирует запрос SELECT. Возвращает поток блоков с результатами выполнения запроса до стадии to_stage.

View File

@ -10,7 +10,7 @@
namespace DB
{
class Settings;
struct Settings;
class ASTFunction;
class ASTSelectQuery;

View File

@ -75,7 +75,7 @@ class ParserCastExpression : public IParserBase
static constexpr auto name = "CAST";
protected:
const char * getName() const { return name; }
const char * getName() const override { return name; }
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected) override;
};

View File

@ -9,7 +9,7 @@ namespace DB
{
class MergeListEntry;
class ReshardingJob;
struct ReshardingJob;
/** Умеет выбирать куски для слияния и сливать их.

View File

@ -24,7 +24,7 @@ struct ShardedBlockWithDateInterval final
using ShardedBlocksWithDateIntervals = std::list<ShardedBlockWithDateInterval>;
class ReshardingJob;
struct ReshardingJob;
/** Создаёт новые шардированные куски с данными.
*/