summaryrefslogtreecommitdiffstats
path: root/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp')
-rw-r--r--debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp b/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp
deleted file mode 100644
index 094ace11..00000000
--- a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/sys/error.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#include "libplatform/impl.h"
-
-namespace mp4v2 { namespace platform { namespace sys {
-
-///////////////////////////////////////////////////////////////////////////////
-
-const char*
-getErrorStr( int errno_ )
-{
- return std::strerror( errno_ );
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-int
-getLastError()
-{
- return errno;
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-const char*
-getLastErrorStr()
-{
- return strerror( errno );
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-}}} // namespace mp4v2::platform::sys