1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00

Remove unneeded <algorithm> includes

One of these days, I need to get around to running Include What You Use
on this codebase. Until then, while I was working on #624, I noticed
these; I'm removing them now.
This commit is contained in:
Misa 2021-02-19 20:58:37 -08:00 committed by Ethan Lee
parent c1950037c2
commit 0e313d0d75
3 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
#include <algorithm>
#include <iostream>
#include <iterator>
#include <physfs.h>

View File

@ -1,7 +1,6 @@
#ifndef GRAPHICS_H
#define GRAPHICS_H
#include <algorithm>
#include <map>
#include <string>
#include <vector>

View File

@ -3,6 +3,7 @@
#define ED_DEFINITION
#include "editor.h"
#include <algorithm>
#include <physfs.h>
#include <stdio.h>
#include <string>