diff options
| author | Guillaume Melquiond | 2015-12-22 22:35:09 +0100 |
|---|---|---|
| committer | Guillaume Melquiond | 2015-12-22 22:35:09 +0100 |
| commit | 602badcad9deec9224b78cd1e1033af30358ef2e (patch) | |
| tree | e528188a52c4120fa94a5e0ff2c035874dee75cf /interp | |
| parent | d55676344c8dc0d9a87b2ef12ec2348281db4bf5 (diff) | |
Do not compose "str" and "to_string" whenever possible.
For instance, calling only Id.print is faster than calling both str and
Id.to_string, since the latter performs a copy. It also makes the code a
bit simpler to read.
Diffstat (limited to 'interp')
| -rw-r--r-- | interp/coqlib.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/coqlib.ml b/interp/coqlib.ml index 5ac718e3b0..b309f26cd6 100644 --- a/interp/coqlib.ml +++ b/interp/coqlib.ml @@ -87,7 +87,7 @@ let check_required_library d = *) (* or failing ...*) errorlabstrm "Coqlib.check_required_library" - (str "Library " ++ str (DirPath.to_string dir) ++ str " has to be required first.") + (str "Library " ++ pr_dirpath dir ++ str " has to be required first.") (************************************************************************) (* Specific Coq objects *) |
