Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/FilterEngine.cpp

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Patch Set: Created July 11, 2014, 2:24 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/FilterEngine.cpp
===================================================================
--- a/test/FilterEngine.cpp
+++ b/test/FilterEngine.cpp
@@ -14,17 +14,17 @@
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
#include "BaseJsTest.h"
namespace
{
- typedef std::tr1::shared_ptr<AdblockPlus::FilterEngine> FilterEnginePtr;
+ typedef std::shared_ptr<AdblockPlus::FilterEngine> FilterEnginePtr;
class VeryLazyFileSystem : public LazyFileSystem
{
public:
StatResult Stat(const std::string& path) const
{
return StatResult();
}

Powered by Google App Engine
This is Rietveld