Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#1759 closed Bugs (fixed)

sp_typeinfo.hpp not included in the right way

Reported by: jgottman@… Owned by: Peter Dimov
Milestone: Boost 1.36.0 Component: smart_ptr
Version: Boost 1.35.0 Severity: Problem
Keywords: Cc:

Description

Several files inside the <boost/detail> directory include the line

#include "sp_typeinfo.hpp"

Sometimes this makes it impossible to find this file. The line should be replaced with

#include <detail/sp_typeinfo.hpp>

Joe Gottman

Change History (4)

comment:1 by Peter Dimov, 15 years ago

Status: newassigned

Are you sure that it should be <detail/sp_typeinfo.hpp>? I'd have expected the proper fix to be

#include <boost/detail/sp_typeinfo.hpp>

comment:2 by jgottman@…, 15 years ago

Your right. That was a typo in my suggested fix.

comment:3 by Peter Dimov, 15 years ago

Resolution: fixed
Status: assignedclosed

(In [44004]) Fix #1759 in trunk.

comment:4 by Peter Dimov, 15 years ago

(In [44005]) Fix #1759 in release.

Note: See TracTickets for help on using tickets.