Use some C++17 features

This commit is contained in:
ReinUsesLisp 2018-10-03 00:32:45 -03:00
parent 45555c0e57
commit 0485e1877c
20 changed files with 170 additions and 245 deletions

View file

@ -8,8 +8,7 @@
namespace Sirit {
LiteralString::LiteralString(const std::string& string_)
: string(string_) {
LiteralString::LiteralString(const std::string& string_) : string(string_) {
operand_type = OperandType::String;
}