Aesthetic fixes to silence Sun Studio compiler

This commit is contained in:
Magnus Edenhill 2014-06-04 23:21:07 +02:00
parent b810eeae3d
commit b7f3c6c7af
2 changed files with 9 additions and 9 deletions

View File

@ -119,7 +119,7 @@ enum ErrorCode {
ERR_REPLICA_NOT_AVAILABLE = 9,
ERR_MSG_SIZE_TOO_LARGE = 10,
ERR_STALE_CTRL_EPOCH = 11,
ERR_OFFSET_METADATA_TOO_LARGE = 12,
ERR_OFFSET_METADATA_TOO_LARGE = 12
};
@ -203,7 +203,7 @@ class Event {
enum Type {
EVENT_ERROR,
EVENT_STATS,
EVENT_LOG,
EVENT_LOG
};
enum Severity {
@ -215,7 +215,7 @@ class Event {
EVENT_SEVERITY_WARNING = 4,
EVENT_SEVERITY_NOTICE = 5,
EVENT_SEVERITY_INFO = 6,
EVENT_SEVERITY_DEBUG = 7,
EVENT_SEVERITY_DEBUG = 7
};
~Event () {};
@ -238,13 +238,13 @@ class Conf {
public:
enum ConfType {
CONF_GLOBAL,
CONF_TOPIC,
CONF_TOPIC
};
enum ConfResult {
CONF_UNKNOWN = -2,
CONF_INVALID = -1,
CONF_OK = 0,
CONF_OK = 0
};
static const std::string DEBUG_CONTEXTS;

View File

@ -68,9 +68,9 @@ const char *rd_kafka_version_str (void);
/**
* rd_kafka_t handle type
*/
typedef enum {
typedef enum rd_kafka_type_t {
RD_KAFKA_PRODUCER,
RD_KAFKA_CONSUMER,
RD_KAFKA_CONSUMER
} rd_kafka_type_t;
@ -136,7 +136,7 @@ typedef enum {
RD_KAFKA_RESP_ERR_REPLICA_NOT_AVAILABLE = 9,
RD_KAFKA_RESP_ERR_MSG_SIZE_TOO_LARGE = 10,
RD_KAFKA_RESP_ERR_STALE_CTRL_EPOCH = 11,
RD_KAFKA_RESP_ERR_OFFSET_METADATA_TOO_LARGE = 12,
RD_KAFKA_RESP_ERR_OFFSET_METADATA_TOO_LARGE = 12
} rd_kafka_resp_err_t;
@ -233,7 +233,7 @@ rd_kafka_message_errstr (const rd_kafka_message_t *rkmessage) {
typedef enum {
RD_KAFKA_CONF_UNKNOWN = -2, /* Unknown configuration name. */
RD_KAFKA_CONF_INVALID = -1, /* Invalid configuration value. */
RD_KAFKA_CONF_OK = 0, /* Configuration okay */
RD_KAFKA_CONF_OK = 0 /* Configuration okay */
} rd_kafka_conf_res_t;