changeset 23479:06bf3a0b08bf

maint: Use "" instead of <> for our own include files.
author John W. Eaton <jwe@octave.org>
date Tue, 09 May 2017 12:49:53 -0400
parents bce43f1a3cce
children 0670624ea91b
files libgui/src/m-editor/file-editor.cc libgui/src/main-window.cc libinterp/corefcn/gl-render.cc libinterp/octave.h libinterp/parse-tree/lex.ll libinterp/parse-tree/oct-parse.in.yy
diffstat 6 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/m-editor/file-editor.cc	Tue May 09 12:34:39 2017 -0400
+++ b/libgui/src/m-editor/file-editor.cc	Tue May 09 12:49:53 2017 -0400
@@ -43,10 +43,10 @@
 #include <QVBoxLayout>
 #include <Qsci/qscicommandset.h>
 
+#include "main-window.h"
+#include "oct-map.h"
 #include "octave-link.h"
 #include "utils.h"
-#include "main-window.h"
-#include <oct-map.h>
 
 file_editor::file_editor (QWidget *p)
   : file_editor_interface (p)
--- a/libgui/src/main-window.cc	Tue May 09 12:34:39 2017 -0400
+++ b/libgui/src/main-window.cc	Tue May 09 12:49:53 2017 -0400
@@ -61,11 +61,11 @@
 
 #include "builtin-defun-decls.h"
 #include "defaults.h"
+#include "oct-map.h"
 #include "octave.h"
 #include "symtab.h"
+#include "utils.h"
 #include "version.h"
-#include "utils.h"
-#include <oct-map.h>
 
 static file_editor_interface *
 create_default_editor (QWidget *p)
--- a/libinterp/corefcn/gl-render.cc	Tue May 09 12:34:39 2017 -0400
+++ b/libinterp/corefcn/gl-render.cc	Tue May 09 12:49:53 2017 -0400
@@ -31,7 +31,7 @@
 #  include <windows.h>
 #endif
 
-#include <lo-mappers.h>
+#include "lo-mappers.h"
 #include "oct-locbuf.h"
 #include "oct-refcount.h"
 
--- a/libinterp/octave.h	Tue May 09 12:34:39 2017 -0400
+++ b/libinterp/octave.h	Tue May 09 12:49:53 2017 -0400
@@ -30,7 +30,7 @@
 #include <list>
 #include <string>
 
-#include <str-vec.h>
+#include "str-vec.h"
 
 namespace octave
 {
--- a/libinterp/parse-tree/lex.ll	Tue May 09 12:34:39 2017 -0400
+++ b/libinterp/parse-tree/lex.ll	Tue May 09 12:49:53 2017 -0400
@@ -116,8 +116,8 @@
 #include "token.h"
 #include "utils.h"
 #include "variables.h"
-#include <oct-parse.h>
-#include <oct-gperf.h>
+#include "oct-parse.h"
+#include "oct-gperf.h"
 
 // FIXME: with bison 3.x, OCTAVE_STYPE appears in the generated
 // oct-parse.h file, but there is no definition for YYSTYPE, which is
--- a/libinterp/parse-tree/oct-parse.in.yy	Tue May 09 12:34:39 2017 -0400
+++ b/libinterp/parse-tree/oct-parse.in.yy	Tue May 09 12:49:53 2017 -0400
@@ -84,7 +84,7 @@
 #include "variables.h"
 
 // oct-parse.h must be included after pt-all.h
-#include <oct-parse.h>
+#include "oct-parse.h"
 
 extern int octave_lex (YYSTYPE *, void *);