fix for formatting

This commit is contained in:
rrawther
2023-08-21 14:32:36 -07:00
rodzic 8f692d8118
commit 79c338fc72
2 zmienionych plików z 4 dodań i 5 usunięć
+3 -3
Wyświetl plik
@@ -47,9 +47,9 @@ find_package(HIP QUIET)
find_package(Libva QUIET)
if(HIP_FOUND AND Libva_FOUND)
include_directories(./api
./src
./src/vaapi
include_directories(api
src
src/vaapi
)
file(GLOB_RECURSE SOURCES "./src/*.cpp")
add_library(${PROJECT_NAME} SHARED ${SOURCES})
+1 -2
Wyświetl plik
@@ -37,8 +37,7 @@ THE SOFTWARE.
#define ERR(X) std::cerr << "[ERR] " << " {" << __func__ <<"} " << " " << X << std::endl;
class rocDecodeException : public std::exception
{
class rocDecodeException : public std::exception {
public:
explicit rocDecodeException(const std::string& message):_message(message){}