Commit 79f6c5e08c89baf482eaec0cc40c4e05d2fe58f9

  • avatar
  • khansen
  • Wed Feb 10 12:40:27 CET 2010
Fix compilation with aCC: work around declaration order issue

The compiler requires that the type is known at parse time,
forward-declaring is not enough.
  
113113
114114 void sample(CodeBlock*, Instruction*);
115115
116#if COMPILER(WINSCW)
116#if COMPILER(WINSCW) || COMPILER(ACC)
117117 ScriptExecutable* m_executable;
118118#else
119119 RefPtr<ScriptExecutable> m_executable;
  
9393#define WTF_COMPILER_WINSCW 1
9494#endif
9595
96/* COMPILER(ACC) - HP aCC */
97#if defined(__HP_aCC)
98#define WTF_COMPILER_ACC 1
99#endif
100
96101
97102/* ==== CPU() - the target CPU architecture ==== */
98103