Skip to content

Commit

Permalink
fix #50
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Jul 4, 2024
1 parent be1241c commit 1a210ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: mapscanner
Title: Print Maps, Draw on Them, Scan Them Back in
Version: 0.1.0.002
Version: 0.1.0.003
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre")),
person("Michael D.", "Sumner", , "[email protected]", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"codeRepository": "https://github.com/ropensci/mapscanner",
"issueTracker": "https://github.com/ropensci/mapscanner/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.1.0.002",
"version": "0.1.0.003",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
5 changes: 2 additions & 3 deletions src/concaveman.h
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,8 @@ template<class T> class CircularElement {
typedef CircularElement<T> type;
typedef type *ptr_type;

template<class... Args> CircularElement<T>(Args&&... args):
m_data(std::forward<Args>(args)...) {

template<class... Args>
CircularElement(Args&&... args) : m_data(std::forward<Args>(args)...) {
}

T& data() {
Expand Down

0 comments on commit 1a210ce

Please sign in to comment.