changeset 32256:3701ac59d931

Consistently use double quotes to include "config.h". * libgui/src/variable-editor-model.cc, libinterp/corefcn/gsvd.cc, libinterp/corefcn/latex-text-renderer.cc, libinterp/parse-tree/pt-anon-scopes.cc, liboctave/numeric/gsvd.cc: Most files already use double quotes when including "config.h". Replace the angle brackets by double quotes in the remaining files to use consistent lookup rules.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 16 Aug 2023 16:57:52 +0200
parents d421df248d7c
children f0a9f9cc3c15
files libgui/src/variable-editor-model.cc libinterp/corefcn/gsvd.cc libinterp/corefcn/latex-text-renderer.cc libinterp/parse-tree/pt-anon-scopes.cc liboctave/numeric/gsvd.cc
diffstat 5 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/variable-editor-model.cc	Sun Aug 13 20:47:18 2023 +0200
+++ b/libgui/src/variable-editor-model.cc	Wed Aug 16 16:57:52 2023 +0200
@@ -24,7 +24,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 #ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 #endif
 
 #include <sstream>
--- a/libinterp/corefcn/gsvd.cc	Sun Aug 13 20:47:18 2023 +0200
+++ b/libinterp/corefcn/gsvd.cc	Wed Aug 16 16:57:52 2023 +0200
@@ -24,7 +24,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 #ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 #endif
 
 #include "dMatrix.h"
--- a/libinterp/corefcn/latex-text-renderer.cc	Sun Aug 13 20:47:18 2023 +0200
+++ b/libinterp/corefcn/latex-text-renderer.cc	Wed Aug 16 16:57:52 2023 +0200
@@ -24,7 +24,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#  include "config.h"
 #endif
 
 #include <iostream>
--- a/libinterp/parse-tree/pt-anon-scopes.cc	Sun Aug 13 20:47:18 2023 +0200
+++ b/libinterp/parse-tree/pt-anon-scopes.cc	Wed Aug 16 16:57:52 2023 +0200
@@ -24,7 +24,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#  include "config.h"
 #endif
 
 #include "error.h"
--- a/liboctave/numeric/gsvd.cc	Sun Aug 13 20:47:18 2023 +0200
+++ b/liboctave/numeric/gsvd.cc	Wed Aug 16 16:57:52 2023 +0200
@@ -24,7 +24,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 #ifdef HAVE_CONFIG_H
-#  include <config.h>
+#  include "config.h"
 #endif
 
 #include <algorithm>