summaryrefslogtreecommitdiff
path: root/src/node_http2_state.h
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-04-30 15:12:57 +0200
committerAnna Henningsen <anna@addaleax.net>2018-05-06 21:37:55 +0200
commit2c5b94f390ff4c6e4a90af9f36b808e70b44709f (patch)
tree4608177eefa728613abb610c7a78be6578362531 /src/node_http2_state.h
parent8f1ee0bc6f90ff3417889bedfcb246e4faebe551 (diff)
downloadandroid-node-v8-2c5b94f390ff4c6e4a90af9f36b808e70b44709f.tar.gz
android-node-v8-2c5b94f390ff4c6e4a90af9f36b808e70b44709f.tar.bz2
android-node-v8-2c5b94f390ff4c6e4a90af9f36b808e70b44709f.zip
http2: rename http2_state class to Http2State
This commit renames the http2_state class to follow the guidelines in CPP_STYLE_GUIDE.md. PR-URL: https://github.com/nodejs/node/pull/20423 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node_http2_state.h')
-rw-r--r--src/node_http2_state.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_http2_state.h b/src/node_http2_state.h
index ed88f068a0..64a0942f7f 100644
--- a/src/node_http2_state.h
+++ b/src/node_http2_state.h
@@ -84,9 +84,9 @@ namespace http2 {
IDX_SESSION_STATS_COUNT
};
-class http2_state {
+class Http2State {
public:
- explicit http2_state(v8::Isolate* isolate) :
+ explicit Http2State(v8::Isolate* isolate) :
root_buffer(
isolate,
sizeof(http2_state_internal)),