Skip to content

Commit f04beb8

Browse files
committed
Fix build error
1 parent c496094 commit f04beb8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ssesvr : ssesvr.cc ../httplib.h Makefile
4747
ssecli : ssecli.cc ../httplib.h Makefile
4848
$(CXX) -o ssecli $(CXXFLAGS) ssecli.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
4949

50-
ssecli-stream : ssecli-stream.cc ../httplib.h ../httplib-stream.h Makefile
50+
ssecli-stream : ssecli-stream.cc ../httplib.h ../httplib.h Makefile
5151
$(CXX) -o ssecli-stream -std=c++20 -I.. -Wall -Wextra -pthread ssecli-stream.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
5252

5353
benchmark : benchmark.cc ../httplib.h Makefile

example/ssecli-stream.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// ssecli20.cc
2+
// ssecli-stream.cc
33
//
44
// Copyright (c) 2025 Yuji Hirose. All rights reserved.
55
// MIT License
@@ -8,7 +8,7 @@
88
// with automatic reconnection support (similar to JavaScript's EventSource)
99
//
1010

11-
#include <httplib-stream.h>
11+
#include <httplib.h>
1212

1313
#include <chrono>
1414
#include <iostream>

0 commit comments

Comments
 (0)