Browse Source

ft:去掉编译警告

master
SisMaker 1 year ago
parent
commit
32db290a09
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/comMisc/utReadRec.erl
  2. +1
    -1
      src/hexMap/hexMap.erl
  3. +1
    -1
      src/template/utEtsFold.erl

+ 1
- 1
src/comMisc/utReadRec.erl View File

@ -1,5 +1,5 @@
-module(utReadRec).
-compile([export_all]).
-compile([export_all, nowarn_export_all]).
read_records(FileOrModule, Opts0) ->
Opts = lists:delete(report_warnings, Opts0),

+ 1
- 1
src/hexMap/hexMap.erl View File

@ -2,7 +2,7 @@
-module(hexMap).
-include("utComMisc.hrl").
-compile([export_all]).
-compile([export_all, nowarn_export_all]).
%%线 http://zvold.blogspot.com/2010/01/bresenhams-line-drawing-algorithm-on_26.html
-define(samePoint(SX, SY, TX, TY), SX == TX andalso SY == TY).

+ 1
- 1
src/template/utEtsFold.erl View File

@ -2,7 +2,7 @@
-include_lib("stdlib/include/ms_transform.hrl").
%% ordered_set和由单个 ETS (select/2)(Next ) safe_fixtable/ 2
-compile([export_all]).
-compile([export_all, nowarn_export_all]).
-export([rank/5, fold/2, fold/3]).

Loading…
Cancel
Save