cosmetics

This commit is contained in:
Dmitrii Kovalkov 2020-05-28 18:21:23 +02:00
parent b0537bf31e
commit 278592106c

View File

@ -28,8 +28,6 @@
#include <Common/typeid_cast.h>
#include <Common/assert_cast.h>
#include <Functions/TargetSpecific.h>
#if !defined(ARCADIA_BUILD)
# include <Common/config.h>
#endif
@ -54,11 +52,13 @@ namespace ErrorCodes
extern const int CANNOT_ADD_DIFFERENT_AGGREGATE_STATES;
}
/** Arithmetic operations: +, -, *, /, %,
* intDiv (integer division)
* Bitwise operations: |, &, ^, ~.
* Etc.
*/
template <typename A, typename B, typename Op, typename ResultType_ = typename Op::ResultType>
struct BinaryOperationImplBase
{
@ -89,7 +89,6 @@ struct BinaryOperationImplBase
}
};
template <typename Op>
struct FixedStringOperationImpl
{