Commit c895f607 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Cut some outdated lines in docs and comments

Summary: [Folly] Cut some outdated lines in docs and comments which refer to no-longer supported versions of gcc.

Reviewed By: Orvid

Differential Revision: D19229059

fbshipit-source-id: c8abb81c292091339622e9cc3d4e5fd3cd6459b4
parent 1702a53f
...@@ -6,10 +6,6 @@ executing benchmarks. Currently the framework targets only ...@@ -6,10 +6,6 @@ executing benchmarks. Currently the framework targets only
single-threaded testing (though you can internally use fork-join single-threaded testing (though you can internally use fork-join
parallelism and measure total run time). parallelism and measure total run time).
To use this library, you need to be using gcc 4.6 or later. Include
`folly/Benchmark.h` and make sure `folly/benchmark.cpp` is part of the
build (either directly or packaged with a library).
### Overview ### Overview
*** ***
......
...@@ -8,9 +8,6 @@ C++, similar to the way languages with runtime type systems work ...@@ -8,9 +8,6 @@ C++, similar to the way languages with runtime type systems work
`boost::variant`, but the syntax is intended to be a little more like `boost::variant`, but the syntax is intended to be a little more like
using the native type directly. using the native type directly.
To use `dynamic`, you need to be using gcc 4.6 or later. You'll want to
include `folly/dynamic.h` (or perhaps also `folly/json.h`).
### Overview ### Overview
*** ***
......
...@@ -9,9 +9,6 @@ and dynamically-typed `folly::dynamic` objects, and can extract values from ...@@ -9,9 +9,6 @@ and dynamically-typed `folly::dynamic` objects, and can extract values from
random-access containers and string-keyed maps. In many cases, `format` is random-access containers and string-keyed maps. In many cases, `format` is
faster than `sprintf` as well as being fully type-safe. faster than `sprintf` as well as being fully type-safe.
To use `format`, you need to be using gcc 4.6 or later. You'll want to include
`folly/Format.h`.
### Overview ### Overview
*** ***
......
...@@ -194,8 +194,7 @@ class MergeTuples { ...@@ -194,8 +194,7 @@ class MergeTuples {
} // namespace detail } // namespace detail
// TODO(mcurtiss): support zip() for N>1 operands. Because of variadic problems, // TODO(mcurtiss): support zip() for N>1 operands.
// this might not be easily possible until gcc4.8 is available.
template < template <
class Source, class Source,
class Zip = detail::Zip<typename std::decay<Source>::type>> class Zip = detail::Zip<typename std::decay<Source>::type>>
......
...@@ -549,8 +549,6 @@ class ContainsExpected { ...@@ -549,8 +549,6 @@ class ContainsExpected {
/** /**
* Test that a class containing an Expected can be copy and move assigned. * Test that a class containing an Expected can be copy and move assigned.
* This was broken under gcc 4.7 until assignment operators were explicitly
* defined.
*/ */
TEST(Expected, AssignmentContained) { TEST(Expected, AssignmentContained) {
{ {
......
...@@ -715,8 +715,6 @@ class ContainsOptional { ...@@ -715,8 +715,6 @@ class ContainsOptional {
/** /**
* Test that a class containing an Optional can be copy and move assigned. * Test that a class containing an Optional can be copy and move assigned.
* This was broken under gcc 4.7 until assignment operators were explicitly
* defined.
*/ */
TEST(Optional, AssignmentContained) { TEST(Optional, AssignmentContained) {
{ {
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
This file contains an extensive STL compliance test suite for an STL vector This file contains an extensive STL compliance test suite for an STL vector
implementation (such as FBVector). implementation (such as FBVector).
GCC 4.7 is required.
*/ */
#if 0 #if 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment