From 36545cad84321699a3f8f0dbea3acb3d1fe6ff92 Mon Sep 17 00:00:00 2001 From: Andrew Shao Date: Wed, 10 Sep 2025 14:23:20 -0700 Subject: [PATCH] Add missing header file --- doc/changelog.md | 7 ++++++- include/scalarfield.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/changelog.md b/doc/changelog.md index 08c82abd..37e246aa 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -6,6 +6,7 @@ To be released at a future time. Description +- Add missing header file to scalarfield.h - Update supported Python versions to 3.10, 3.11, and 3.12 - Bump versions for upload/download-artifact Github Actions - Add Client API functions to put, get, unpack, @@ -16,7 +17,11 @@ Description Detailed Notes -- Update supported Python versions to 3.10, 3.11, and 3.12 +- When including scalarfield.h into an application, + MetadataBuffer was never defined. Add an explicit include + to the header file to ensure that applications can build. + ([PR528](https://github.com/CrayLabs/SmartRedis/pull/528)) +- Update supported Python versions to 3.10, 3.11, and 3.12 ([PR527](https://github.com/CrayLabs/SmartRedis/pull/527)) - Bump versions for upload/download-artifact Github Actions ([PR526](https://github.com/CrayLabs/SmartRedis/pull/526)) diff --git a/include/scalarfield.h b/include/scalarfield.h index bc816a60..023b3c21 100644 --- a/include/scalarfield.h +++ b/include/scalarfield.h @@ -29,6 +29,7 @@ #ifndef SMARTREDIS_SCALARFIELD_H #define SMARTREDIS_SCALARFIELD_H +#include "metadatabuffer.h" #include "metadatafield.h" #include