diff options
author | Tom Barrett <tombarrett@siu.edu> | 2017-03-15 14:43:08 -0500 |
---|---|---|
committer | Tom Barrett <tombarrett@siu.edu> | 2017-03-15 14:43:08 -0500 |
commit | c86eef1db053a51748cf75a8318604b1d14b5be5 (patch) | |
tree | 2f2040c95880f384f6f448b96932b2571455cf7b /inc | |
parent | 836f56a40fa4a2b8e68c23b2c299e50fefe0c15d (diff) |
-string comparison is for losers
Diffstat (limited to 'inc')
-rw-r--r-- | inc/dna.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/dna.hpp b/inc/dna.hpp index 11886e9..ff252a8 100644 --- a/inc/dna.hpp +++ b/inc/dna.hpp @@ -10,7 +10,7 @@ class DNA { public: DNA(){}; - DNA(std::string s); + DNA(int type); DNA combine(DNA D); |