Fix up some dodgy spacing

This commit is contained in:
Aralox
2020-10-17 21:04:39 +11:00
parent 0c9fbd9caf
commit 1f07a24451
3 changed files with 37 additions and 37 deletions

View File

@@ -616,19 +616,19 @@ class ASTFormattedValue : public ASTNode {
public:
static const char* F_STRING_QUOTE;
enum ConversionFlag {
NONE=0,
NONE=0,
STR=1,
REPR=2,
ASCII=3,
FMTSPEC=4
};
ASTFormattedValue(PycRef<ASTNode> val, ConversionFlag conversion, PycRef<ASTNode> format_spec)
: ASTNode(NODE_FORMATTEDVALUE),
m_val(std::move(val)),
m_conversion(conversion),
m_format_spec(std::move(format_spec))
{}
{}
PycRef<ASTNode> val() const { return m_val; }
ConversionFlag conversion() const { return m_conversion; }