summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-11-07 16:12:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-11-07 19:20:17 +0100
commita0e0575dcf4fede5c6e20636c63042d8c62ecf77 (patch)
treeaf00fa7be111a91cc2ff61d8f6d9fb0d945a3231 /basic/source
parentefd2510e225232ac35707a3ed55b83be9fa046af (diff)
forward decls go after #include
Change-Id: I54c33508639044092356eed5144720261b4f65db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124816 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source')
-rw-r--r--basic/source/inc/codegen.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/basic/source/inc/codegen.hxx b/basic/source/inc/codegen.hxx
index da573cd3b627..e9e06216014b 100644
--- a/basic/source/inc/codegen.hxx
+++ b/basic/source/inc/codegen.hxx
@@ -19,11 +19,12 @@
#pragma once
-class SbiParser;
-class SbModule;
#include "opcodes.hxx"
#include "buffer.hxx"
+class SbiParser;
+class SbModule;
+
class SbiCodeGen {
SbiParser* pParser; // for error messages, line, column etc.
SbModule& rMod;