Update optimize_png_files.sh to work on msysgit bash.
[chromium-blink-merge.git] / skia / config / sk_ref_cnt_ext_release.h
blob7736c84cf7e1d4280a260f410a7864e7d4053d95
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SK_REF_CNT_EXT_RELEASE_H_
6 #define SK_REF_CNT_EXT_RELEASE_H_
8 #ifdef SK_REF_CNT_EXT_DEBUG_H_
9 #error Only one SkRefCnt should be used.
10 #endif
12 // Alternate implementation of SkRefCnt for Chromium release builds
13 class SK_API SkRefCnt : public SkRefCntBase {
14 public:
15 void deref() const { SkRefCntBase::unref(); }
18 #endif