Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion drm/DrmSessionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* limitations under the License.
*/


/**
* @file DrmSessionManager.cpp
* @brief Source file for DrmSessionManager.
Expand Down
2 changes: 1 addition & 1 deletion vendor/SocInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include "vendor/mtk/MtkSocInterface.h"
#endif


/**
* @brief Checks if the input string starts with the given prefix.
*
Expand All @@ -39,6 +38,7 @@
bool SocInterface::StartsWith( const char *inputStr, const char *prefix )
{
bool rc = true;
bool rc_check = true;
while( *prefix )
{
if( *inputStr++ != *prefix++ )
Expand Down