mirror of
https://github.com/NixOS/nix
synced 2025-06-25 19:01:16 +02:00
Remove FIXME
This commit is contained in:
parent
f16af08e83
commit
06c57899e3
1 changed files with 3 additions and 1 deletions
|
@ -595,7 +595,9 @@ struct CompareValues
|
||||||
case nString:
|
case nString:
|
||||||
return v1->string_view().compare(v2->string_view()) < 0;
|
return v1->string_view().compare(v2->string_view()) < 0;
|
||||||
case nPath:
|
case nPath:
|
||||||
// FIXME: handle accessor?
|
// Note: we don't take the accessor into account
|
||||||
|
// since it's not obvious how to compare them in a
|
||||||
|
// reproducible way.
|
||||||
return strcmp(v1->_path.path, v2->_path.path) < 0;
|
return strcmp(v1->_path.path, v2->_path.path) < 0;
|
||||||
case nList:
|
case nList:
|
||||||
// Lexicographic comparison
|
// Lexicographic comparison
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue