Skip to content

Instantly share code, notes, and snippets.

@alepez
Created May 31, 2017 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alepez/63f48d556ba083b41709b72bd12e3fab to your computer and use it in GitHub Desktop.
Save alepez/63f48d556ba083b41709b72bd12e3fab to your computer and use it in GitHub Desktop.
fix missing boost::array
From 10328d6d369a2218832315162741bd04d35fe85d Mon Sep 17 00:00:00 2001
From: Alessandro Pezzato <alessandro.pezzato@gmail.com>
Date: Wed, 31 May 2017 09:06:03 +0200
Subject: [PATCH] fix missing boost::array
---
include/crow/websocket.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/crow/websocket.h b/include/crow/websocket.h
index a1e8e8f..c03547c 100644
--- a/include/crow/websocket.h
+++ b/include/crow/websocket.h
@@ -1,5 +1,6 @@
#pragma once
#include <boost/algorithm/string/predicate.hpp>
+#include <boost/array.hpp>
#include "crow/socket_adaptors.h"
#include "crow/http_request.h"
#include "crow/TinySHA1.hpp"
--
2.13.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment