codecheck 整改

Signed-off-by: ZhangLiang <zhangliang335@h-partners.com>
Change-Id: Ic95970d3444e4317b986cad09ca2a24917476911
This commit is contained in:
ZhangLiang 2024-10-17 13:28:42 +00:00
parent 8980628f60
commit 4eb9bec5f2
2 changed files with 7 additions and 2 deletions

View File

@ -21,7 +21,8 @@
#define EOK 0 #define EOK 0
extern "C" { extern "C" {
void *loader_instance_heap_calloc(const struct loader_instance *instance, size_t size, VkSystemAllocationScope allocation_scope); void *loader_instance_heap_calloc(const struct loader_instance *instance,
size_t size, VkSystemAllocationScope allocation_scope);
} }
constexpr const char *DEBUG_SANDBOX_DIR = "/data/storage/el1/bundle/"; constexpr const char *DEBUG_SANDBOX_DIR = "/data/storage/el1/bundle/";

View File

@ -12,6 +12,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#ifndef VK_BUNDLE_MGR_HELPER_H
#define VK_BUNDLE_MGR_HELPER_H
#include "vulkan/vulkan_core.h" #include "vulkan/vulkan_core.h"
#ifdef __cplusplus #ifdef __cplusplus
#include <singleton.h> #include <singleton.h>
@ -61,3 +64,4 @@ private:
} }
} }
#endif // __cplusplus #endif // __cplusplus
#endif