1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Fix a stub signature. HeuristicReduce should return a bool.

This should fix a -Wdocumentation warning.

llvm-svn: 162458
This commit is contained in:
Lang Hames 2012-08-23 19:06:23 +00:00
parent 3d4254e5b4
commit bc1651a925

View File

@ -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.