Skip to content

Commit 701fd80

Browse files
author
Gabriel Féron
committed
Add missing parameter always_configure
1 parent 36b3420 commit 701fd80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ impl Config {
240240
///
241241
/// In some cases, when you have a big project, you can disable
242242
/// subsequents runs of cmake to make `cargo build` faster.
243-
pub fn always_configure(&mut self) -> &mut Config {
244-
self.always_configure = true;
243+
pub fn always_configure(&mut self, always_configure: bool) -> &mut Config {
244+
self.always_configure = always_configure;
245245
self
246246
}
247247

0 commit comments

Comments
 (0)