aboutsummaryrefslogtreecommitdiffstats
path: root/include/vector2.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-07-23 10:47:10 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-07-23 10:47:10 -0400
commit9e540db7d6492168cadcafddbf145ffdd7b21981 (patch)
tree8019a7a67e66a5ec87ad7872278e8ee92431251a /include/vector2.hpp
parent215e5ee6ce089c3e0d5be28fd816bc7031b6acab (diff)
source cleanup; beginning of custom attacks
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r--include/vector2.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp
index 77ee7e7..5c9f9e1 100644
--- a/include/vector2.hpp
+++ b/include/vector2.hpp
@@ -24,9 +24,13 @@ struct vector2 {
}
vector2<T>& operator=(const std::string& s) {
- auto comma = s.find(',');
- x = std::stoi(s.substr(0, comma));
- y = std::stoi(s.substr(comma + 1));
+ if (s.empty()) {
+ x = y = 0;
+ } else {
+ auto comma = s.find(',');
+ x = std::stoi(s.substr(0, comma));
+ y = std::stoi(s.substr(comma + 1));
+ }
return *this;
}