Skip to content

Commit 86e9106

Browse files
authored
Merge pull request #332 from ds4dm/fix-missing-include
Add missing optional include
2 parents facf66f + c6a6d87 commit 86e9106

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ default_language_version:
55

66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: v3.2.0
8+
rev: v4.2.0
99
hooks:
1010
- id: trailing-whitespace
1111
- id: end-of-file-fixer
@@ -20,17 +20,17 @@ repos:
2020
- id: clang-tidy
2121
args: [--fix, --fix-errors]
2222
- repo: https://github.com/psf/black
23-
rev: 21.7b0
23+
rev: 22.3.0
2424
hooks:
2525
- id: black
2626
- repo: https://github.com/asottile/blacken-docs
27-
rev: v1.10.0
27+
rev: v1.12.1
2828
hooks:
2929
- id: blacken-docs
3030
args: [ '--line-length', '100' ]
3131
additional_dependencies: [black==21.7b0]
3232
- repo: https://github.com/Lucas-C/pre-commit-hooks
33-
rev: v1.1.9
33+
rev: v1.1.13
3434
hooks:
3535
- id: forbid-crlf
3636
- id: remove-crlf

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# The following should include only numbers
33
VERSION_MAJOR 0
44
VERSION_MINOR 8
5-
VERSION_PATCH 0
5+
VERSION_PATCH 1
66
# The following should include their whole string and can be combined.
77
# They must be numbered, starting from 0.
88
VERSION_PRE # Pre release without leading dot, e.g. `a0` (alpha), `b0` (beta), or `rc0` (release candidate)

libecole/include/ecole/dynamics/branching.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <cstddef>
4+
#include <optional>
45

56
#include <xtensor/xtensor.hpp>
67

0 commit comments

Comments
 (0)