diff options
author | Kostis Sagonas <[email protected]> | 2016-05-27 08:49:02 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-05-31 12:19:59 +0200 |
commit | 5faa1efc208011304a5298f7d858e96ea7367093 (patch) | |
tree | fa15635f81cb27a3dd22ce470dcd572125840832 | |
parent | c886c8637c12f1b86e9c295c75e12e622e2c237e (diff) | |
download | otp-5faa1efc208011304a5298f7d858e96ea7367093.tar.gz otp-5faa1efc208011304a5298f7d858e96ea7367093.tar.bz2 otp-5faa1efc208011304a5298f7d858e96ea7367093.zip |
Add missing type declarations to a record
-rw-r--r-- | lib/hipe/flow/cfg.hrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/hipe/flow/cfg.hrl b/lib/hipe/flow/cfg.hrl index 641ec102db..2575b9e38a 100644 --- a/lib/hipe/flow/cfg.hrl +++ b/lib/hipe/flow/cfg.hrl @@ -2,7 +2,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2015. All Rights Reserved. +%% Copyright Ericsson AB 2007-2016. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -38,8 +38,8 @@ is_closure :: boolean(), closure_arity = none :: 'none' | arity(), is_leaf :: boolean(), - params, % :: list() - info = []}). %% this field seems not needed; take out?? + params :: list(), %% XXX: refine + info = [] :: list()}). %% seems not needed; take out?? -type cfg_info() :: #cfg_info{}. %% |