| Index: command_buffer/service/cross/resource.h
|
| ===================================================================
|
| --- command_buffer/service/cross/resource.h (revision 30977)
|
| +++ command_buffer/service/cross/resource.h (working copy)
|
| @@ -37,7 +37,6 @@
|
|
|
| #include <vector>
|
| #include "base/scoped_ptr.h"
|
| -#include "core/cross/types.h"
|
| #include "command_buffer/common/cross/resource.h"
|
|
|
| namespace o3d {
|
| @@ -259,7 +258,7 @@
|
| }
|
| // Gets a resource by ID.
|
| T *Get(ResourceId id) {
|
| - return down_cast<T*>(container_.Get(id));
|
| + return static_cast<T*>(container_.Get(id));
|
| }
|
| private:
|
| ResourceMapBase container_;
|
|
|
| Property changes on: command_buffer\service\cross\resource.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|