From 3a0fc126470732b0f35b029a097c3bfeb11c6dfa Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Tue, 12 Apr 2011 22:27:10 +0000 Subject: [PATCH] Fixed minor bug from incorrect 'use'. --- ChangeLog | 9 +++++++++ src/ace.f90 | 2 +- src/cross_section.f90 | 2 +- src/fileio.f90 | 3 +-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index cf4dac5424..c2aaa5d14c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-04-12 Paul Romano + + * ace.f90: Fixed bug relating to 'use' of str_to_real from wrong + module + * cross_section.f90: Fixed bug relating to 'use' of str_to_real + from wrong module + * fileio.f90: Fixed bug relating to 'use' of str_to_real from wrong + module + 2011-04-01 Paul Romano * ace.f90: Added ability to read S(a,b) data through the diff --git a/src/ace.f90 b/src/ace.f90 index d777abd402..1d90cd2619 100644 --- a/src/ace.f90 +++ b/src/ace.f90 @@ -4,7 +4,7 @@ module ace use output, only: error, message use string, only: lower_case use fileio, only: read_line, read_data, skip_lines - use string, only: split_string, str_to_real + use string, only: split_string use data_structures, only: dict_create, dict_add_key, dict_has_key, & & dict_get_key, dict_delete use endf, only: reaction_name diff --git a/src/cross_section.f90 b/src/cross_section.f90 index dc2ce8c90d..f357290709 100644 --- a/src/cross_section.f90 +++ b/src/cross_section.f90 @@ -1,7 +1,7 @@ module cross_section use global - use string, only: split_string, str_to_real + use string, only: split_string use data_structures, only: dict_create, dict_add_key, dict_get_key use output, only: error, message use types, only: xsData diff --git a/src/fileio.f90 b/src/fileio.f90 index e2a18fcdc3..232ce1b9bb 100644 --- a/src/fileio.f90 +++ b/src/fileio.f90 @@ -2,8 +2,7 @@ module fileio use global use types, only: Cell, Surface, ExtSource, ListKeyValueCI - use string, only: split_string_wl, lower_case, str_to_real, split_string, & - & concatenate + use string, only: split_string_wl, lower_case, split_string, concatenate use output, only: message, warning, error use data_structures, only: dict_create, dict_add_key, dict_get_key, & & dict_has_key, DICT_NULL, dict_keys, list_size