#ifdef USE_REDIS instead of #if

master
Unknown 2018-06-14 20:01:17 +02:00
parent 78c2c107db
commit 5b6b6c97fc
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#include "config.h"
#if USE_REDIS
#ifdef USE_REDIS
#include <stdexcept>
#include <sstream>

View File

@ -1,7 +1,7 @@
#pragma once
#include "config.h"
#if USE_REDIS
#ifdef USE_REDIS