aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/compile.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2012-10-08 15:51:57 +0200
committerBjörn Gustavsson <[email protected]>2013-01-18 11:48:06 +0100
commitcdf80608685750e9e09069d8299a5b44ed53b2a0 (patch)
tree8b2cc3f5ea9c3684515744b62985a8954e1aa0a0 /lib/compiler/src/compile.erl
parentce467a4676fa9c6d501adff800a86ad1b93baa95 (diff)
downloadotp-cdf80608685750e9e09069d8299a5b44ed53b2a0.tar.gz
otp-cdf80608685750e9e09069d8299a5b44ed53b2a0.tar.bz2
otp-cdf80608685750e9e09069d8299a5b44ed53b2a0.zip
Remove support for parameterized modules
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r--lib/compiler/src/compile.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index 10e7f5e9ce..7596a2cac8 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -895,7 +895,6 @@ foldl_core_transforms(St, []) -> {ok,St}.
%%% Fetches the module name from a list of forms. The module attribute must
%%% be present.
-get_module([{attribute,_,module,{M,_As}} | _]) -> M;
get_module([{attribute,_,module,M} | _]) -> M;
get_module([_ | Rest]) ->
get_module(Rest).