diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-09 17:35:42 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-09 17:35:42 +0000 |
commit | e8328959446df06daed33e7310e935df5496a0b7 (patch) | |
tree | 2fe2476213f85e2bb475054f956ba89ec4b87f3b /courgette | |
parent | 1427cd5c47cc8c09c8020ed3f1b9ddec4e6e5b60 (diff) | |
download | chromium_src-e8328959446df06daed33e7310e935df5496a0b7.zip chromium_src-e8328959446df06daed33e7310e935df5496a0b7.tar.gz chromium_src-e8328959446df06daed33e7310e935df5496a0b7.tar.bz2 |
Finish scoped_array<T> to scoped_ptr<T[]> conversion on Linux.
There are only a few instances left in the Linux build, so lumping
them all into one patch.
BUG=171111
Review URL: https://codereview.chromium.org/13916003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193134 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette')
-rw-r--r-- | courgette/assembly_program.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/courgette/assembly_program.h b/courgette/assembly_program.h index 3d231c2..2a68e51 100644 --- a/courgette/assembly_program.h +++ b/courgette/assembly_program.h @@ -124,7 +124,7 @@ class AssemblyProgram { // Sharing instructions that emit a single byte saves a lot of space. Instruction* GetByteInstruction(uint8 byte); - scoped_array<Instruction*> byte_instruction_cache_; + scoped_ptr<Instruction*[]> byte_instruction_cache_; uint64 image_base_; // Desired or mandated base address of image. |