| 849 | //////////////////// |
| 850 | |
| 851 | bool DbgSrcFile::IsBeef() |
| 852 | { |
| 853 | int dotPos = (int)mFilePath.LastIndexOf('.'); |
| 854 | if (dotPos == -1) |
| 855 | return false; |
| 856 | const char* ext = mFilePath.c_str() + dotPos; |
| 857 | // The ".cs" is legacy. Remove that eventually. |
| 858 | return (stricmp(ext, ".bf") == 0) || (stricmp(ext, ".cs") == 0); |
| 859 | } |
| 860 | |
| 861 | DbgSrcFile::~DbgSrcFile() |
| 862 | { |
no test coverage detected