Summary:public Add support for stopping allocation tracking on methods annotated with IgnoreAllocations Reviewed By: cristianoc Differential Revision: D2979563 fb-gh-sync-id: 2699375 shipit-source-id: 2699375master
parent
ed580c59e9
commit
697778cc3b
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Copyright (c) 2015 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package com.facebook.infer.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface IgnoreAllocations {}
|
Loading…
Reference in new issue