From: "Darryl L. Pierce" <[email protected]> The underscores were causing the Ruby language bindings to output warning errors concerning their names. --- proton-c/include/proton/buffer.h | 4 ++-- proton-c/include/proton/codec.h | 4 ++-- proton-c/include/proton/driver.h | 4 ++-- proton-c/include/proton/engine.h | 4 ++-- proton-c/include/proton/error.h | 4 ++-- proton-c/include/proton/framing.h | 4 ++-- proton-c/include/proton/message.h | 4 ++-- proton-c/include/proton/messenger.h | 4 ++-- proton-c/include/proton/parser.h | 4 ++-- proton-c/include/proton/sasl.h | 4 ++-- proton-c/include/proton/scanner.h | 4 ++-- proton-c/include/proton/types.h | 4 ++-- proton-c/include/proton/util.h | 4 ++-- 13 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/proton-c/include/proton/buffer.h b/proton-c/include/proton/buffer.h index 007d5f0..aa6f3d0 100644 --- a/proton-c/include/proton/buffer.h +++ b/proton-c/include/proton/buffer.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_BUFFER_H -#define _PROTON_BUFFER_H 1 +#ifndef PROTON_BUFFER_H +#define PROTON_BUFFER_H 1 /* * diff --git a/proton-c/include/proton/codec.h b/proton-c/include/proton/codec.h index b1df55b..3738ef1 100644 --- a/proton-c/include/proton/codec.h +++ b/proton-c/include/proton/codec.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_CODEC_H -#define _PROTON_CODEC_H 1 +#ifndef PROTON_CODEC_H +#define PROTON_CODEC_H 1 /* * diff --git a/proton-c/include/proton/driver.h b/proton-c/include/proton/driver.h index e4eea4c..5ae18ab 100644 --- a/proton-c/include/proton/driver.h +++ b/proton-c/include/proton/driver.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_DRIVER_H -#define _PROTON_DRIVER_H 1 +#ifndef PROTON_DRIVER_H +#define PROTON_DRIVER_H 1 /* * diff --git a/proton-c/include/proton/engine.h b/proton-c/include/proton/engine.h index 610ab47..ad0c7c1 100644 --- a/proton-c/include/proton/engine.h +++ b/proton-c/include/proton/engine.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_ENGINE_H -#define _PROTON_ENGINE_H 1 +#ifndef PROTON_ENGINE_H +#define PROTON_ENGINE_H 1 /* * diff --git a/proton-c/include/proton/error.h b/proton-c/include/proton/error.h index ee317ab..34aa956 100644 --- a/proton-c/include/proton/error.h +++ b/proton-c/include/proton/error.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_ERROR_H -#define _PROTON_ERROR_H 1 +#ifndef PROTON_ERROR_H +#define PROTON_ERROR_H 1 /* * diff --git a/proton-c/include/proton/framing.h b/proton-c/include/proton/framing.h index 9f8a182..95259db 100644 --- a/proton-c/include/proton/framing.h +++ b/proton-c/include/proton/framing.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_FRAMING_H -#define _PROTON_FRAMING_H 1 +#ifndef PROTON_FRAMING_H +#define PROTON_FRAMING_H 1 /* * diff --git a/proton-c/include/proton/message.h b/proton-c/include/proton/message.h index 8543dc1..0354c1f 100644 --- a/proton-c/include/proton/message.h +++ b/proton-c/include/proton/message.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_MESSAGE_H -#define _PROTON_MESSAGE_H 1 +#ifndef PROTON_MESSAGE_H +#define PROTON_MESSAGE_H 1 /* * diff --git a/proton-c/include/proton/messenger.h b/proton-c/include/proton/messenger.h index c53bc4a..97c2dd9 100644 --- a/proton-c/include/proton/messenger.h +++ b/proton-c/include/proton/messenger.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_MESSENGER_H -#define _PROTON_MESSENGER_H 1 +#ifndef PROTON_MESSENGER_H +#define PROTON_MESSENGER_H 1 /* * diff --git a/proton-c/include/proton/parser.h b/proton-c/include/proton/parser.h index 03fbacc..68bd13c 100644 --- a/proton-c/include/proton/parser.h +++ b/proton-c/include/proton/parser.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_PARSER_H -#define _PROTON_PARSER_H 1 +#ifndef PROTON_PARSER_H +#define PROTON_PARSER_H 1 /* * diff --git a/proton-c/include/proton/sasl.h b/proton-c/include/proton/sasl.h index c128496..ce294ce 100644 --- a/proton-c/include/proton/sasl.h +++ b/proton-c/include/proton/sasl.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_SASL_H -#define _PROTON_SASL_H 1 +#ifndef PROTON_SASL_H +#define PROTON_SASL_H 1 /* * diff --git a/proton-c/include/proton/scanner.h b/proton-c/include/proton/scanner.h index 21d431d..0563cfb 100644 --- a/proton-c/include/proton/scanner.h +++ b/proton-c/include/proton/scanner.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_SCANNER_H -#define _PROTON_SCANNER_H 1 +#ifndef PROTON_SCANNER_H +#define PROTON_SCANNER_H 1 /* * diff --git a/proton-c/include/proton/types.h b/proton-c/include/proton/types.h index 9268225..647bb53 100644 --- a/proton-c/include/proton/types.h +++ b/proton-c/include/proton/types.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_TYPES_H -#define _PROTON_TYPES_H 1 +#ifndef PROTON_TYPES_H +#define PROTON_TYPES_H 1 /* * diff --git a/proton-c/include/proton/util.h b/proton-c/include/proton/util.h index 3d24b61..e616556 100644 --- a/proton-c/include/proton/util.h +++ b/proton-c/include/proton/util.h @@ -1,5 +1,5 @@ -#ifndef _PROTON_UTIL_H -#define _PROTON_UTIL_H 1 +#ifndef PROTON_UTIL_H +#define PROTON_UTIL_H 1 /* * -- 1.7.10.4 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
