diff options
| author | jhurst <jhurst@cinecert.com> | 2014-09-22 16:17:05 +0000 |
|---|---|---|
| committer | jhurst <> | 2014-09-22 16:17:05 +0000 |
| commit | 4e702586c01e263e547c0a2a64859326d37fc022 (patch) | |
| tree | 2d0d13928bf8b995065586bcdcfecd26c23a119c /src/TimedText_Parser.cpp | |
| parent | ab3e3df49a9d4a44a3bf11211e31bdeac3ef7bcf (diff) | |
win32 compiler fixes
Diffstat (limited to 'src/TimedText_Parser.cpp')
| -rw-r--r-- | src/TimedText_Parser.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/TimedText_Parser.cpp b/src/TimedText_Parser.cpp index 3312b58..ea5f0a9 100644 --- a/src/TimedText_Parser.cpp +++ b/src/TimedText_Parser.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2007-2013, John Hurst +Copyright (c) 2007-2014, John Hurst All rights reserved. Redistribution and use in source and binary forms, with or without @@ -70,7 +70,10 @@ ASDCP::TimedText::LocalFilenameResolver::ResolveRID(const byte_t* uuid, TimedTex UUID RID(uuid); PathList_t found_list; +#ifndef KM_WIN32 + // TODO, fix this for win32 (needs regex) FindInPath(PathMatchRegex(RID.EncodeHex(buf, 64)), m_Dirname, found_list); +#endif if ( found_list.size() == 1 ) { |
