From aa838872c4a90944550bdb677ca2e3344ddc6363 Mon Sep 17 00:00:00 2001 From: YoungHui Park Date: Tue, 10 Nov 2020 16:08:13 -0600 Subject: [PATCH] Resolve rebase leftover --- src/source.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/source.cpp b/src/source.cpp index 97a722acf..0efaf52ba 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -72,21 +72,6 @@ IndependentSource::IndependentSource(pugi::xml_node node) // Check for external source file if (check_for_node(node, "file")) { - // Copy path of source file - settings::path_source = get_node_value(node, "file", false, true); - - // Check if source file exists - if (!file_exists(settings::path_source)) { - fatal_error(fmt::format("Source file '{}' does not exist.", - settings::path_source)); - } - - } else if (check_for_node(node, "library")) { - settings::path_source_library = get_node_value(node, "library", false, true); - if (!file_exists(settings::path_source_library)) { - fatal_error(fmt::format("Source library '{}' does not exist.", - settings::path_source_library)); - } } else {