delete basictypes.h header

We have updated the uses of ARRAY_SIZE to arraysize in past patches:

5237aaf243
fa5d0dbd1e

BUG=None
R=tommi@webrtc.org

Review URL: https://codereview.webrtc.org/1537943002

Cr-Commit-Position: refs/heads/master@{#11085}
This commit is contained in:
tfarina
2015-12-18 07:33:02 -08:00
committed by Commit bot
parent b7d9a97ce4
commit c1cd566cc6
3 changed files with 0 additions and 22 deletions

View File

@ -214,7 +214,6 @@ static_library("rtc_base") {
"autodetectproxy.h",
"base64.cc",
"base64.h",
"basicdefs.h",
"common.cc",
"common.h",
"crc32.cc",

View File

@ -181,7 +181,6 @@
'bandwidthsmoother.h',
'base64.cc',
'base64.h',
'basicdefs.h',
'bind.h',
'callback.h',
'common.cc',

View File

@ -1,20 +0,0 @@
/*
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef WEBRTC_BASE_BASICDEFS_H_
#define WEBRTC_BASE_BASICDEFS_H_
#if HAVE_CONFIG_H
#include "config.h" // NOLINT
#endif
#define ARRAY_SIZE(x) (static_cast<int>(sizeof(x) / sizeof(x[0])))
#endif // WEBRTC_BASE_BASICDEFS_H_