Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D330517907 for ; Mon, 1 Jun 2015 20:41:59 +0000 (UTC) Received: (qmail 61659 invoked by uid 500); 1 Jun 2015 20:41:56 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 61333 invoked by uid 500); 1 Jun 2015 20:41:56 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 59688 invoked by uid 99); 1 Jun 2015 20:41:55 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2015 20:41:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AD384E08DA; Mon, 1 Jun 2015 20:41:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Mon, 01 Jun 2015 20:42:22 -0000 Message-Id: <1f124c0b4c384337807023eaadee39a7@git.apache.org> In-Reply-To: <78c80ee93a184cf38737dfceafa81356@git.apache.org> References: <78c80ee93a184cf38737dfceafa81356@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [28/50] rebar commit: updated refs/heads/import to e9f62c4 Use correct types for OTP >=17.x Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/c22370a2 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/c22370a2 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/c22370a2 Branch: refs/heads/import Commit: c22370a2cbd99ab884aeb248faaf254f9c9ea9b0 Parents: 5f995bf Author: Tuncer Ayaz Authored: Sun Jun 29 21:03:26 2014 +0200 Committer: Tuncer Ayaz Committed: Sun Jun 29 21:13:54 2014 +0200 ---------------------------------------------------------------------- src/rebar_config.erl | 2 +- src/rebar_erlc_compiler.erl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/c22370a2/src/rebar_config.erl ---------------------------------------------------------------------- diff --git a/src/rebar_config.erl b/src/rebar_config.erl index 0127aff..bdc3fb5 100644 --- a/src/rebar_config.erl +++ b/src/rebar_config.erl @@ -41,7 +41,7 @@ -ifdef(namespaced_types). %% dict:dict() exists starting from Erlang 17. --type rebar_dict() :: dict:dict(). +-type rebar_dict() :: dict:dict(term(), term()). -else. %% dict() has been obsoleted in Erlang 17 and deprecated in 18. -type rebar_dict() :: dict(). http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/c22370a2/src/rebar_erlc_compiler.erl ---------------------------------------------------------------------- diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl index ae4503b..f628433 100644 --- a/src/rebar_erlc_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -48,8 +48,8 @@ }). -ifdef(namespaced_types). -%% digraph:digraph() exists starting from Erlang 17. --type rebar_digraph() :: digraph:digraph(). +%% digraph:graph() exists starting from Erlang 17. +-type rebar_digraph() :: digraph:graph(). -else. %% digraph() has been obsoleted in Erlang 17 and deprecated in 18. -type rebar_digraph() :: digraph().