-
Notifications
You must be signed in to change notification settings - Fork 15
Conversation
@votca-bot format |
@votca-bot changelog: adapted tokenizer api |
Codecov Report
@@ Coverage Diff @@
## master #707 +/- ##
========================================
- Coverage 51.2% 51.1% -0.1%
========================================
Files 294 294
Lines 26847 27269 +422
========================================
+ Hits 13760 13961 +201
- Misses 13087 13308 +221
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR greatly improves the readability, great job!
tools::Tokenizer tok_md_atoms(frag.get("mdatoms").as<std::string>(), " \t\n"); | ||
std::vector<std::string> md_atoms = tok_md_atoms.ToVector(); | ||
std::vector<std::string> map_atoms = | ||
frag.get(_mapatom_xml["atoms"]).template as<std::vector<std::string>>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the use of the template
keyword here :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is used to indicate that the next < is not a comparison operator but a template parameter
No description provided.