| 836 | } |
| 837 | |
| 838 | std::error_code |
| 839 | getPotentiallyUniqueFileName(const Twine &Model, |
| 840 | SmallVectorImpl<char> &ResultPath) { |
| 841 | int Dummy; |
| 842 | return createUniqueEntity(Model, Dummy, ResultPath, false, 0, FS_Name); |
| 843 | } |
| 844 | |
| 845 | std::error_code |
| 846 | getPotentiallyUniqueTempFileName(const Twine &Prefix, StringRef Suffix, |
nothing calls this directly
no test coverage detected