From 4e72fade81a5352f87a9ea60b86a0fdbb6bd75c2 Mon Sep 17 00:00:00 2001 From: Gavin Halliday Date: Fri, 6 Mar 2026 10:56:35 +0000 Subject: [PATCH] HPCC-35956 Fix invalid c++ type generated for type_filepos Signed-off-by: Gavin Halliday --- ecl/hqlcpp/hqlwcpp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ecl/hqlcpp/hqlwcpp.cpp b/ecl/hqlcpp/hqlwcpp.cpp index 4153f4e06a1..60dbbd04eab 100644 --- a/ecl/hqlcpp/hqlwcpp.cpp +++ b/ecl/hqlcpp/hqlwcpp.cpp @@ -506,6 +506,7 @@ void HqlCppWriter::generateType(ITypeInfo * type, const char * name) case type_filepos: case type_blob: prefix = intTypeName(8-1, compiler, false); + next = nullptr; // Do not follow the base type of a type_filepos break; case type_keyedint: break;