From f7f6b876d5992d6b456572274c9f767143854c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 11 Feb 2021 19:22:32 +0100 Subject: [PATCH] [FIXUP] Fix line wrapping in FunctionCallGraph docstring --- libsolidity/analysis/FunctionCallGraph.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libsolidity/analysis/FunctionCallGraph.h b/libsolidity/analysis/FunctionCallGraph.h index 8a092c7e5..71254783f 100644 --- a/libsolidity/analysis/FunctionCallGraph.h +++ b/libsolidity/analysis/FunctionCallGraph.h @@ -32,9 +32,12 @@ namespace solidity::frontend * functions and modifiers * * Includes the following special nodes: - * - EntryCreation: All calls made at contract creation originate from this node. Constructors are modelled to be all called by this node instead of calling each other due to implicit constructors that don't exist at this stage. + * - EntryCreation: All calls made at contract creation originate from this node. + * Constructors are modelled to be all called by this node instead of calling each other + * due to implicit constructors that don't exist at this stage. * - InternalCreationDispatch: Represents the internal dispatch function at creation time - * - InternalDispatch: Represents the runtime dispatch for internal function pointers and complex expressions + * - InternalDispatch: Represents the runtime dispatch for internal function pointers + * and complex expressions * - Entry: Represents the runtime dispatch for all external functions * * Nodes are a variant of either the enum SpecialNode or an ASTNode pointer.