alias.cc 469 Bytes
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
#include "butil/debug/alias.h"
#include "butil/build_config.h"
gejun's avatar
gejun committed
7

8
namespace butil {
gejun's avatar
gejun committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22
namespace debug {

#if defined(COMPILER_MSVC)
#pragma optimize("", off)
#endif

void Alias(const void* var) {
}

#if defined(COMPILER_MSVC)
#pragma optimize("", on)
#endif

}  // namespace debug
23
}  // namespace butil