Files
scylladb/coding-style.md
Nadav Har'El 5ef928a63d coding-style.md: mention "using namespace seastar"
All Scylla code is written with "using namespace seastar", i.e., no
"seastar::" prefix for Seastar symbols. Document this in the coding style.

Signed-off-by: Nadav Har'El <nyh@scylladb.com>
Message-Id: <20190610203948.18075-1-nyh@scylladb.com>
2019-06-11 10:39:03 +03:00

9 lines
407 B
Markdown

# Scylla Coding Style
Please see the [Seastar style document](https://github.com/scylladb/seastar/blob/master/coding-style.md).
Scylla code is written with "using namespace seastar", and should not
explicitly add the "seastar::" prefix to Seastar symbols.
There is usually no need to add "using namespace seastar" to Source files,
because most Scylla header files #include "seastarx.hh", which does this.