Skip to content

Commit

Permalink
Test next small change
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed May 11, 2021
1 parent f3d263d commit 5bf2b49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast_containers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,14 +383,14 @@ namespace Sass {
return elements_;
}

const sass::vector<K> keys() const {
sass::vector<K> keys() const {
sass::vector<T> list;
for (auto kv : elements_) {
list.emplace_back(kv.first);
}
return list;
}
const sass::vector<T> values() const {
sass::vector<T> values() const {
sass::vector<T> list;
for (auto kv : elements_) {
list.emplace_back(kv.second);
Expand Down

0 comments on commit 5bf2b49

Please sign in to comment.