Skip to content

Commit

Permalink
added a patch with a missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
aivazis committed Jan 5, 2024
1 parent a24766e commit cf6ba33
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ source:
- url: https://github.com/pyre/pyre/archive/v{{ version }}.tar.gz
sha256: b012445bcd085f9ed1a3ce51306e597ac4c575ea2f43c509ce4c9371da201571
patches:
# missing ';' in a statement
process-timer.patch

build:
number: 0
Expand Down
13 changes: 13 additions & 0 deletions recipe/process-timer.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/lib/pyre/timers/ProcessClock.icc b/lib/pyre/timers/ProcessClock.icc
index 1c80fcef8..b654c4dc2 100644
--- a/lib/pyre/timers/ProcessClock.icc
+++ b/lib/pyre/timers/ProcessClock.icc
@@ -26,7 +26,7 @@ pyre::timers::ProcessClock::now() -> time_point_type
// otherwise
#else
// complain
- throw std::runtime_error("this platform doesn't have support for CLOCK_PROCESS_CPUTIME_ID")
+ throw std::runtime_error("this platform doesn't have support for CLOCK_PROCESS_CPUTIME_ID");
#endif
}

0 comments on commit cf6ba33

Please sign in to comment.