A stray Copilot review mentioned this:
In library/tests/dds_c_api_test.cpp
#include <gtest/gtest.h>
#include
#include <api/dds_c_api.h>
std::snprintf is used later in this test, but isn’t included, so std::snprintf may be undeclared (and <stdio.h> from other headers won’t reliably put it in std::). Add an explicit include.
A stray Copilot review mentioned this:
In library/tests/dds_c_api_test.cpp
#include <gtest/gtest.h>
#include
#include <api/dds_c_api.h>
std::snprintf is used later in this test, but isn’t included, so std::snprintf may be undeclared (and <stdio.h> from other headers won’t reliably put it in std::). Add an explicit include.