From 95001998ae62d71e6ee88be7ba685d7086bcecf2 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sun, 29 Dec 2024 18:09:35 +0100 Subject: [PATCH] corec: remove empty nodetools.h --- corec/corec/CMakeLists.txt | 1 - corec/corec/node/node.h | 1 - corec/corec/node/nodetools.h | 35 ----------------------------------- 3 files changed, 37 deletions(-) delete mode 100644 corec/corec/node/nodetools.h diff --git a/corec/corec/CMakeLists.txt b/corec/corec/CMakeLists.txt index 76fa40f6..1227a648 100644 --- a/corec/corec/CMakeLists.txt +++ b/corec/corec/CMakeLists.txt @@ -43,7 +43,6 @@ set(corec_node_PUBLIC_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/node/node.h ${CMAKE_CURRENT_SOURCE_DIR}/node/nodebase.h ${CMAKE_CURRENT_SOURCE_DIR}/node/nodetree.h - ${CMAKE_CURRENT_SOURCE_DIR}/node/nodetools.h ) add_library("corec_node" ${corec_node_SOURCES} ${corec_node_PUBLIC_HEADERS} ${corec_base_PUBLIC_HEADERS}) target_include_directories("corec_node" PUBLIC ".") diff --git a/corec/corec/node/node.h b/corec/corec/node/node.h index 7c2fe5b8..87dfd4ec 100644 --- a/corec/corec/node/node.h +++ b/corec/corec/node/node.h @@ -46,7 +46,6 @@ extern "C" { #include "nodebase.h" #include "nodetree.h" -#include "nodetools.h" #ifdef __cplusplus } diff --git a/corec/corec/node/nodetools.h b/corec/corec/node/nodetools.h deleted file mode 100644 index f53dd277..00000000 --- a/corec/corec/node/nodetools.h +++ /dev/null @@ -1,35 +0,0 @@ -/***************************************************************************** - * - * Copyright (c) 2008-2010, CoreCodec, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of CoreCodec, Inc. nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY CoreCodec, Inc. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL CoreCodec, Inc. BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - ****************************************************************************/ - -#ifndef __NODETOOLS_H -#define __NODETOOLS_H - -//some helper functions - -#endif