mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix a stub signature. HeuristicReduce should return a bool.
This should fix a -Wdocumentation warning. llvm-svn: 162458
This commit is contained in:
parent
3d4254e5b4
commit
bc1651a925
@ -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…
Reference in New Issue
Block a user