Skip to content

Commit

Permalink
Fix CI build on macOS
Browse files Browse the repository at this point in the history
CI build failed due to two added warnings. Warnings were:

    '/*' within block comment [-Wcomment]
  • Loading branch information
garbear committed Jan 27, 2020
1 parent 6cc324a commit f0b81e2
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ namespace kodi
* \param shader Shader pass handle
* \param ref_path Relative shader path
*
virtual void ShaderPresetResolveRelative(video_shader &shader, const char *ref_path) { }
*/
//virtual void ShaderPresetResolveRelative(video_shader &shader, const char *ref_path) { }

/*!
* \brief Read the current value for all parameters from preset file
Expand All @@ -342,8 +343,8 @@ namespace kodi
* \param shader Shader passes handle
*
* \return True if successful, otherwise false
*
virtual bool ShaderPresetResolveCurrentParameters(preset_file file, video_shader &shader) { return false; }
*/
//virtual bool ShaderPresetResolveCurrentParameters(preset_file file, video_shader &shader) { return false; }

/*!
* \brief Resolve all shader parameters belonging to the shader preset
Expand Down

0 comments on commit f0b81e2

Please sign in to comment.