Skip to content

Commit 212e72c

Browse files
committedNov 1, 2017
1 parent e026bc3 commit 212e72c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/libexpr/common-eval-args.hh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace nix {
66

77
class Store;
88
class EvalState;
9-
struct Bindings;
9+
class Bindings;
1010

1111
struct MixEvalArgs : virtual Args
1212
{

‎src/libexpr/primops/fetchgit.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ GitInfo exportGit(ref<Store> store, const std::string & uri,
5656
}
5757
}
5858

59-
if (!ref) ref = "master";
59+
if (!ref) ref = "master"s;
6060

6161
if (rev != "") {
6262
std::regex revRegex("^[0-9a-fA-F]{40}$");

0 commit comments

Comments
 (0)
Please sign in to comment.