style(3p/nix/libexpr): Reformat with clang-format

This commit is contained in:
Vincent Ambo 2020-05-19 04:51:01 +01:00
parent f8deeb1442
commit c7be956f3f
5 changed files with 7 additions and 6 deletions

View file

@ -1,3 +1,4 @@
#include <glog/logging.h>
#include <sys/time.h>
#include <nlohmann/json.hpp>
#include <regex>
@ -7,7 +8,6 @@
#include "pathlocks.hh"
#include "primops.hh"
#include "store-api.hh"
#include <glog/logging.h>
using namespace std::string_literals;

View file

@ -141,7 +141,8 @@ HgInfo exportMercurial(ref<Store> store, const std::string& uri,
hgInfo.storePath = json["storePath"];
if (store->isValidPath(hgInfo.storePath)) {
DLOG(INFO) << "using cached Mercurial store path '" << hgInfo.storePath << "'";
DLOG(INFO) << "using cached Mercurial store path '" << hgInfo.storePath
<< "'";
return hgInfo;
}