You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2015/09/21 20:57:16 UTC

[2/2] couch-mrview commit: updated refs/heads/master to dfa6f7e

fix unused variable warning


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/commit/dfa6f7ee
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/tree/dfa6f7ee
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/diff/dfa6f7ee

Branch: refs/heads/master
Commit: dfa6f7eeef9752e45ed88a825e98b1222988ac47
Parents: 7691f48
Author: Robert Newson <rn...@apache.org>
Authored: Mon Sep 21 19:54:48 2015 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Mon Sep 21 19:54:48 2015 +0100

----------------------------------------------------------------------
 src/couch_mrview.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/blob/dfa6f7ee/src/couch_mrview.erl
----------------------------------------------------------------------
diff --git a/src/couch_mrview.erl b/src/couch_mrview.erl
index 63064c6..bd866a2 100644
--- a/src/couch_mrview.erl
+++ b/src/couch_mrview.erl
@@ -58,7 +58,7 @@
 %% of "lib" is an object that will contain libary code
 %% so it not validated.
 %%
-validate_view(<<"lib">>, {Libs})->
+validate_view(<<"lib">>, {_Libs})->
     ok;
 validate_view(VName, {Views}) ->
     case couch_util:get_value(<<"map">>, Views) of