From fa7cd5369b7d9f947b0b26ca681e94b81068a3ef Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 4 Feb 2016 14:48:42 +0100 Subject: StoreAPI -> Store Calling a class an API is a bit redundant... --- perl/lib/Nix/Store.xs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl') diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index 76d3cc36ac..5a1e8424f0 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -19,9 +19,9 @@ using namespace nix; -static ref store() +static ref store() { - static std::shared_ptr _store; + static std::shared_ptr _store; if (!_store) { try { settings.processEnvironment(); @@ -33,7 +33,7 @@ static ref store() croak("%s", e.what()); } } - return ref(_store); + return ref(_store); } -- cgit 1.4.1