Skip to content

Commit 9d5cfed

Browse files
committed
[dataflow] Remove [[deprecated]] from deprecated functions
This fixes -Werror -Wdeprecated builds See D153469
1 parent 4f9aad9 commit 9d5cfed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,13 +529,13 @@ class Environment {
529529

530530
/// Adds `Val` to the set of clauses that constitute the flow condition.
531531
void addToFlowCondition(const Formula &);
532-
LLVM_DEPRECATED("Use Formula version instead", "")
532+
/// Deprecated: Use Formula version instead.
533533
void addToFlowCondition(BoolValue &Val);
534534

535535
/// Returns true if and only if the clauses that constitute the flow condition
536536
/// imply that `Val` is true.
537537
bool flowConditionImplies(const Formula &) const;
538-
LLVM_DEPRECATED("Use Formula version instead", "")
538+
/// Deprecated: Use Formula version instead.
539539
bool flowConditionImplies(BoolValue &Val) const;
540540

541541
/// Returns the `DeclContext` of the block being analysed, if any. Otherwise,

0 commit comments

Comments
 (0)