From 96bec66aef183cf28a99e15a29cbcf7b1ba61332 Mon Sep 17 00:00:00 2001 From: Dariusz Michaluk Date: Mon, 27 Jul 2015 09:41:42 +0200 Subject: [PATCH] Fix build break [Bug] C++ style comments are not allowed in ISO C90 [Cause] N/A [Solution] N/A [Verification] Build Change-Id: Iab690af9fc085c0707aacb83b901c3efde5ae638 --- client/vasum-client.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/client/vasum-client.h b/client/vasum-client.h index 156bbf1..fbdd3b1 100644 --- a/client/vasum-client.h +++ b/client/vasum-client.h @@ -190,12 +190,12 @@ typedef VsmString* VsmArrayString; * Completion status of libvasum-client's functions */ typedef enum { - VSMCLIENT_CUSTOM_ERROR, ///< User specified error - VSMCLIENT_IO_ERROR, ///< Input/Output error - VSMCLIENT_OPERATION_FAILED, ///< Operation failed - VSMCLIENT_INVALID_ARGUMENT, ///< Invalid argument - VSMCLIENT_OTHER_ERROR, ///< Other error - VSMCLIENT_SUCCESS ///< Success + VSMCLIENT_CUSTOM_ERROR, /**< User specified error */ + VSMCLIENT_IO_ERROR, /**< Input/Output error */ + VSMCLIENT_OPERATION_FAILED, /**< Operation failed */ + VSMCLIENT_INVALID_ARGUMENT, /**< Invalid argument */ + VSMCLIENT_OTHER_ERROR, /**< Other error */ + VSMCLIENT_SUCCESS /**< Success */ } VsmStatus; /** -- 2.7.4