aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram/IteratorStatement.cpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-12-18 00:00:21 +0100
committerNao Pross <naopross@thearcway.org>2017-12-18 00:00:21 +0100
commit2e27a93e3ed189b4d96ec7df6e05b102dd2e841a (patch)
tree6952edd5db3b4075532c4ce75bda764d5a67051b /src/diagram/IteratorStatement.cpp
parentUpdate .gitignore and minor changes (mostly formatting) (diff)
downloadOrbitingYeti-2e27a93e3ed189b4d96ec7df6e05b102dd2e841a.tar.gz
OrbitingYeti-2e27a93e3ed189b4d96ec7df6e05b102dd2e841a.zip
Replace tabs with spaces, set up CMake build system
Other changes: - update gitignore - build scripts under `etc` - fix window
Diffstat (limited to '')
-rw-r--r--src/diagram/IteratorStatement.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/diagram/IteratorStatement.cpp b/src/diagram/IteratorStatement.cpp
index efb5236..02a7318 100644
--- a/src/diagram/IteratorStatement.cpp
+++ b/src/diagram/IteratorStatement.cpp
@@ -7,19 +7,17 @@
#include "IteratorStatement.hpp"
-namespace samb {
+using namespace samb;
IteratorStatement::IteratorStatement(Statement::Type t, const std::string& condition, Statement::pointer next)
- : Statement(t, condition, next), m_inner("") {
+ : Statement(t, condition, next), m_inner("") {
- switch (t) {
- case Statement::Type::WHILE:
- case Statement::Type::UNTIL:
- break;
+ switch (t) {
+ case Statement::Type::WHILE:
+ case Statement::Type::UNTIL:
+ break;
- default:
- throw std::invalid_argument("IteratorStatement can only be of type WHILE or UNTIL");
- }
+ default:
+ throw std::invalid_argument("IteratorStatement can only be of type WHILE or UNTIL");
+ }
}
-
-} /* namespace samb */