Skip to content

Commit 8054e66

Browse files
committed
Updating some doc comments so they are captured in doxygen.
1 parent d438734 commit 8054e66

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Release/include/cpprest/http_msg.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ class status_codes
101101
#undef DAT
102102
};
103103

104+
/// Message direction
104105
namespace message_direction
105106
{
106107
/// <summary>

Release/include/cpprest/json.h

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,21 @@ namespace json
8787
/// <summary>
8888
/// This enumeration represents the various kinds of JSON values.
8989
/// </summary>
90-
enum value_type { Number, Boolean, String, Object, Array, Null };
90+
enum value_type
91+
{
92+
/// Number value
93+
Number,
94+
/// Boolean value
95+
Boolean,
96+
/// String value
97+
String,
98+
/// Object value
99+
Object,
100+
/// Array value
101+
Array,
102+
/// Null value
103+
Null
104+
};
91105

92106
/// <summary>
93107
/// Constructor creating a null value

0 commit comments

Comments
 (0)