michael@0: // Copyright (c) 2011 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: #include "base/debug/alias.h" michael@0: #include "build/build_config.h" michael@0: michael@0: namespace base { michael@0: namespace debug { michael@0: michael@0: #if defined(COMPILER_MSVC) michael@0: #pragma optimize("", off) michael@0: #endif michael@0: michael@0: void Alias(const void* var) { michael@0: } michael@0: michael@0: #if defined(COMPILER_MSVC) michael@0: #pragma optimize("", on) michael@0: #endif michael@0: michael@0: } // namespace debug michael@0: } // namespace base