diff options
| author | Stephen Hines <srhines@google.com> | 2013-10-08 00:05:44 -0700 |
|---|---|---|
| committer | Stephen Hines <srhines@google.com> | 2013-10-08 00:08:13 -0700 |
| commit | 99f0e1a329aa8e05bbd5a5d4b90ec87a8549cfd2 (patch) | |
| tree | f07e8899de297066ee097983f5f43607656ce8c2 | |
| parent | d2b6b5f2dbe56f19b6143f876e2677da1735bb5d (diff) | |
| download | android_bionic-99f0e1a329aa8e05bbd5a5d4b90ec87a8549cfd2.tar.gz android_bionic-99f0e1a329aa8e05bbd5a5d4b90ec87a8549cfd2.tar.bz2 android_bionic-99f0e1a329aa8e05bbd5a5d4b90ec87a8549cfd2.zip | |
Fix Clang warning since KernelArgumentBlock is actually a class.
Change-Id: Id72868d80feffbbc5f7d1e43beaed5d4e4d95f52
| -rw-r--r-- | linker/linker_environ.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
