mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
cql3: expr: do not use multi-line comment
do not use muti-line comment. this silences the warning from GCC:
```
In file included from ./cql3/prepare_context.hh:19,
from ./cql3/statements/raw/parsed_statement.hh:14,
from build/debug/gen/cql3/CqlParser.hpp:62,
from build/debug/gen/cql3/CqlParser.cpp:44:
./cql3/expr/expression.hh:490:1: error: multi-line comment [-Werror=comment]
490 | /// Custom formatter for an expression. Supports multiple modes:\
| ^
```
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
Closes scylladb/scylladb#15471
This commit is contained in:
@@ -487,7 +487,7 @@ data_type type_of(const expression& e);
|
||||
|
||||
} // namespace cql3
|
||||
|
||||
/// Custom formatter for an expression. Supports multiple modes:\
|
||||
/// Custom formatter for an expression. Supports multiple modes:
|
||||
/// {:user} for user-oriented output, suitable for error messages (default)
|
||||
/// {:debug} for debug-oriented output
|
||||
/// {:result_set_metadata} for stable output suitable for result set metadata (column headings)
|
||||
|
||||
Reference in New Issue
Block a user