From 99f0e1a329aa8e05bbd5a5d4b90ec87a8549cfd2 Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Tue, 8 Oct 2013 00:05:44 -0700 Subject: [PATCH] Fix Clang warning since KernelArgumentBlock is actually a class. Change-Id: Id72868d80feffbbc5f7d1e43beaed5d4e4d95f52 --- linker/linker_environ.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linker/linker_environ.h b/linker/linker_environ.h index cd7a65b84..d3f54fd08 100644 --- a/linker/linker_environ.h +++ b/linker/linker_environ.h @@ -29,7 +29,7 @@ #ifndef LINKER_ENVIRON_H #define LINKER_ENVIRON_H -struct KernelArgumentBlock; +class KernelArgumentBlock; // Call this function before any of the other functions in this header file. extern void linker_env_init(KernelArgumentBlock& args);