Skip to content
Snippets Groups Projects
Commit a24b9274 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

Fix class/struct mismatching

- fixes class/struct mismatches in forward declarations

Change-Id: I4118d63fd24b817ef6bbb6cd5d6d551dfaa6c78b
parent 6342afa3
No related branches found
No related tags found
No related merge requests found
...@@ -47,8 +47,8 @@ namespace ring { ...@@ -47,8 +47,8 @@ namespace ring {
class AudioBuffer; class AudioBuffer;
class MediaIOHandle; class MediaIOHandle;
class MediaDescription; struct MediaDescription;
class AccountCodecInfo; struct AccountCodecInfo;
class MediaEncoderException : public std::runtime_error { class MediaEncoderException : public std::runtime_error {
public: public:
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
// Forward declarations // Forward declarations
namespace ring { namespace ring {
class SocketPair; class SocketPair;
class AccountVideoCodecInfo; struct AccountVideoCodecInfo;
} }
namespace ring { namespace video { namespace ring { namespace video {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment