From 78382eaa6f95ad52a9d4f2a92755c1d2f3f687bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Tue, 13 Aug 2024 18:08:21 +0200 Subject: [PATCH] libparse: Adjust whitespace --- passes/techmap/libparse.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/passes/techmap/libparse.h b/passes/techmap/libparse.h index 77e305f0b..3dcc0535c 100644 --- a/passes/techmap/libparse.h +++ b/passes/techmap/libparse.h @@ -46,19 +46,18 @@ namespace Yosys LibertyAst *ast; LibertyParser(std::istream &f) : f(f), line(1), ast(parse()) {} ~LibertyParser() { if (ast) delete ast; } - - /* lexer return values: - 'v': identifier, string, array range [...] -> str holds the token string - 'n': newline - anything else is a single character. - */ + + /* lexer return values: + 'v': identifier, string, array range [...] -> str holds the token string + 'n': newline + anything else is a single character. + */ int lexer(std::string &str); - LibertyAst *parse(); + LibertyAst *parse(); void error(); - void error(const std::string &str); + void error(const std::string &str); }; } #endif -