We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a38e62 commit 3ad0f45Copy full SHA for 3ad0f45
src/libflake-tests/flakeref.cc
@@ -8,6 +8,8 @@ namespace nix {
8
/* ----------- tests for flake/flakeref.hh --------------------------------------------------*/
9
10
TEST(parseFlakeRef, path) {
11
+ experimentalFeatureSettings.experimentalFeatures.get().insert(Xp::Flakes);
12
+
13
fetchers::Settings fetchSettings;
14
15
{
src/libutil/config.hh
@@ -262,6 +262,7 @@ public:
262
operator const T &() const { return value; }
263
operator T &() { return value; }
264
const T & get() const { return value; }
265
+ T & get() { return value; }
266
template<typename U>
267
bool operator ==(const U & v2) const { return value == v2; }
268
0 commit comments