From e1fa4a088dd95caef22045f905a9d5d22b71bef0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 24 Jan 2017 21:50:39 -0500 Subject: Whitespace changes --- generator/word.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'generator/word.h') diff --git a/generator/word.h b/generator/word.h index 1d77ed3..a994ec3 100644 --- a/generator/word.h +++ b/generator/word.h @@ -24,7 +24,7 @@ namespace verbly { // Mutators void setAdjectivePosition(positioning adjectivePosition); - + void setVerbGroup(const group& verbGroup); // Accessors @@ -58,7 +58,7 @@ namespace verbly { { return hasTagCount_; } - + int getTagCount() const { // Calling code should always call hasTagCount first. @@ -71,17 +71,17 @@ namespace verbly { { return adjectivePosition_; } - + bool hasVerbGroup() const { return (verbGroup_ != nullptr); } - + const group& getVerbGroup() const { // Calling code should always call hasVerbGroup first. assert(verbGroup_ != nullptr); - + return *verbGroup_; } -- cgit 1.4.1