summaryrefslogtreecommitdiffstats
path: root/courgette/assembly_program.h
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 17:35:42 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 17:35:42 +0000
commite8328959446df06daed33e7310e935df5496a0b7 (patch)
tree2fe2476213f85e2bb475054f956ba89ec4b87f3b /courgette/assembly_program.h
parent1427cd5c47cc8c09c8020ed3f1b9ddec4e6e5b60 (diff)
downloadchromium_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/assembly_program.h')
-rw-r--r--courgette/assembly_program.h2
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.