You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2019/02/22 17:28:30 UTC

[couchdb-khash] 23/25: Eliminate export_all compiler warning

This is an automated email from the ASF dual-hosted git repository.

jaydoane pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-khash.git

commit 7002cd4099d0bad04546836661099f5ed37b9f24
Author: Jay Doane <ja...@apache.org>
AuthorDate: Thu Feb 21 16:05:55 2019 -0800

    Eliminate export_all compiler warning
---
 test/khash_test.erl | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/test/khash_test.erl b/test/khash_test.erl
index cbfa62f..6a23661 100644
--- a/test/khash_test.erl
+++ b/test/khash_test.erl
@@ -1,6 +1,10 @@
 -module(khash_test).
 
--compile([export_all]).
+-export([
+    khash_fetch/0,
+    khash_store/0,
+    run_keys/1
+]).
 
 -include_lib("eunit/include/eunit.hrl").