aboutsummaryrefslogtreecommitdiff
path: root/justify.cc
diff options
context:
space:
mode:
Diffstat (limited to 'justify.cc')
-rw-r--r--justify.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/justify.cc b/justify.cc
index 870c815..73a3a3b 100644
--- a/justify.cc
+++ b/justify.cc
@@ -6,10 +6,10 @@ int main() {
std::cout.sync_with_stdio(false);
std::cin.sync_with_stdio(false);
- LineAccumulator acc{60};
- std::string word;
+ justify::LineAccumulator acc{60};
+ std::string token;
- while ( std::cin >> word ) {
- acc(word);
+ while ( std::cin >> token ) {
+ acc(token);
}
}