diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-18 11:26:24 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-09-18 11:26:24 +0200 |
commit | 83a66e961f043720c9d353923baaefb6f5e8ed96 (patch) | |
tree | c9886fe0e0c4265b80fd2f9115e191001385b6c6 /lib/mnesia/doc | |
parent | 0e8d50bd2f25910559f54295a05a2a7fc6bf9c6f (diff) | |
parent | f4a7f8a1f617e46653267bb18b9f7f635437d6d1 (diff) | |
download | otp-83a66e961f043720c9d353923baaefb6f5e8ed96.tar.gz otp-83a66e961f043720c9d353923baaefb6f5e8ed96.tar.bz2 otp-83a66e961f043720c9d353923baaefb6f5e8ed96.zip |
Merge branch 'maint'
* maint:
reltool: Remove export_all warning in tests
et: Remove export_all warnings in test
mnesia: Remove export_all in tests
wx: Remove export_all in example code
wx: test remove export_all
wx: Update doc, OpenGL external links
wx: Reduce Opengl docs
Diffstat (limited to 'lib/mnesia/doc')
-rw-r--r-- | lib/mnesia/doc/src/company.erl | 7 | ||||
-rw-r--r-- | lib/mnesia/doc/src/company_o.erl | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lib/mnesia/doc/src/company.erl b/lib/mnesia/doc/src/company.erl index 20e3235347..5a3b122394 100644 --- a/lib/mnesia/doc/src/company.erl +++ b/lib/mnesia/doc/src/company.erl @@ -19,7 +19,12 @@ %% -module(company). --compile(export_all). +-export([init/0,insert_emp/3,mk_projs/2,females/0,all_females/0, + g/0,female_bosses/0, raise_females/1, over_write/2, raise/2, + bad_raise/2, get_emps/2, get_emps2/2, filter/2, filter_deps/3, + search_deps/3, bench1/0, dotimes/2, dist_init/0, remove_proj/1, + del_in_projs/1, sync/0, tabs/0, find_male_on_second_floor/0, + panic/1, fill_tables/0]). %0 diff --git a/lib/mnesia/doc/src/company_o.erl b/lib/mnesia/doc/src/company_o.erl index 7300e9d4bb..650b6cdeca 100644 --- a/lib/mnesia/doc/src/company_o.erl +++ b/lib/mnesia/doc/src/company_o.erl @@ -19,7 +19,11 @@ %% -module(company_o). --compile(export_all). + +-export([sinit/0, init/0,insert_emp/3,females/0, + female_bosses/0, raise_females/1, over_write/2, raise/2, + bad_raise/2, get_emps/2, get_emps2/2]). + -import(mnesia, [transaction/1]). |