diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-10 23:01:20 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-10 23:01:20 +0000 |
commit | 42ff47b781b72643d2c5a2c4fe2159b4c3e20347 (patch) | |
tree | 091ea301fdd6bdb3ae280f015571bfb4a0da11b6 /media/base | |
parent | 0fcfb2a1252c8665c8078aa1ccd94b5153a92f18 (diff) | |
download | chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.zip chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.gz chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.bz2 |
Change #ifdef _DEBUG test to #ifndef NDEBUG test.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/5991010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base')
-rw-r--r-- | media/base/yuv_row_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/base/yuv_row_posix.cc b/media/base/yuv_row_posix.cc index a66fa7b..2217f38 100644 --- a/media/base/yuv_row_posix.cc +++ b/media/base/yuv_row_posix.cc @@ -1,10 +1,10 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// 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. #include "media/base/yuv_row.h" -#ifdef _DEBUG +#ifndef NDEBUG #include "base/logging.h" #else #define DCHECK(a) |