summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2020-06-20 18:50:14 +0200
committermormj <34754695+mormj@users.noreply.github.com>2020-06-24 11:36:46 -0400
commit4644dd50e99f390b0066e5f6692bc96d7a0d8cb4 (patch)
tree555a97ba6d4a5c635f261aa65610fab171ed5c5d
parent7d2321542142981f3c8d1e5583b4e27fd35add7f (diff)
modtool templates: remove unused config.h constructs
-rw-r--r--gr-utils/modtool/templates/templates.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/gr-utils/modtool/templates/templates.py b/gr-utils/modtool/templates/templates.py
index a121a77912..264fc698f1 100644
--- a/gr-utils/modtool/templates/templates.py
+++ b/gr-utils/modtool/templates/templates.py
@@ -92,10 +92,6 @@ namespace gr {
# C++ file of a GR block
Templates['block_impl_cpp'] = '''/* -*- c++ -*- */
${str_to_fancyc_comment(license)}
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
#include <gnuradio/io_signature.h>
% if blocktype == 'noblock':
#include <${include_dir_prefix}/${blockname}.h>
@@ -407,10 +403,6 @@ class ${blockname}(${parenttype}):
# C++ file for QA (Boost UTF style)
Templates['qa_cpp_boostutf'] = '''/* -*- c++ -*- */
${str_to_fancyc_comment(license)}
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <${include_dir_prefix}/${blockname}.h>
#include <gnuradio/attributes.h>
#include <boost/test/unit_test.hpp>
@@ -572,10 +564,6 @@ file_format: 1
# C++ file of a GR block
Templates['block_cpp36'] = '''/* -*- c++ -*- */
${str_to_fancyc_comment(license)}
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
% if blocktype != 'noblock':
#include <gr_io_signature.h>
% endif