Skip to content

Commit f1d61e2

Browse files
BotellaAgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 2b607d4 commit f1d61e2

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

bindings/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile bindings/python/requirements.in
5+
# pip-compile --pre bindings/python/requirements.in
66
#

include/geode/basic/cached_value.hpp

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,15 @@ namespace geode
8181
void serialize( Archive& archive )
8282
{
8383
archive.ext( *this, Growable< Archive, CachedValue >{
84-
{ []( Archive& a, CachedValue& value ) {
85-
a.value1b( value.computed_ );
86-
a( value.value_ );
87-
}, [] Archive& /*a*/, CachedValue& /*value*/ ) { // skip serialize} } } );
88-
}
84+
{ []( Archive& a, CachedValue& value ) {
85+
a.value1b( value.computed_ );
86+
a( value.value_ );
87+
}, [] Archive& /*a*/, CachedValue& /*value*/ )
88+
{ // skip serialize} } } );
89+
}
8990

90-
private:
91-
mutable bool computed_{ false };
92-
mutable ReturnType value_;
93-
};
91+
private:
92+
mutable bool computed_{ false };
93+
mutable ReturnType value_;
94+
};
9495
} // namespace geode

0 commit comments

Comments
 (0)