mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-07 01:38:26 +00:00
Fix a stub signature. HeuristicReduce should return a bool.
This should fix a -Wdocumentation warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162458 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b54141cae
commit
bfa7edae1c
@ -193,8 +193,9 @@ namespace PBQP {
|
||||
/// reduce list.
|
||||
/// @return True if a reduction takes place, false if the heuristic reduce
|
||||
/// list is empty.
|
||||
void heuristicReduce() {
|
||||
bool heuristicReduce() {
|
||||
llvm_unreachable("Must be implemented in derived class.");
|
||||
return false;
|
||||
}
|
||||
|
||||
/// \brief Prepare a change in the costs on the given edge.
|
||||
|
Loading…
x
Reference in New Issue
Block a user